Frame.Navigate() 与 this.Frame.Navigate()

Frame.Navigate() vs this.Frame.Navigate()

Frame.Navigate()this.Frame.Navigate() 在 Windows 8.1 商店应用程序中有什么区别?

这有什么区别

Frame.Navigate(typeof(Login));

有这个吗?

this.Frame.Navigate(typeof(Login));

没有区别。

The this keyword refers to the current instance of the class and is also used as a modifier of the first parameter of an extension method.

https://msdn.microsoft.com/en-us/library/dk1507sz.aspx