如何在 Frame.Navigate 调用后获取导航页面的实际实例?

How to get the actual instace of the navigated Page after a Frame.Navigate call?

在 UWP 中,Frame.Navigate 方法使用 sourcePageType (Type) 作为参数来了解要导航到的页面类型。

我想知道是否有办法获取导航的实际实例 Page(作为导航的一部分创建)。

导航完成后,您可以从FrameContent中获取页面实例。

最快可能是在您可以订阅的 Frame.Navigated 活动之后。