Windows 10 个通用应用程序在页面之间导航 VB.NET
Windows 10 Universal App Navigating between pages VB.NET
查看互联网上的各种资源,我发现
Frame.Navigate(typeof (SecondaryPage))
好像是切换页面的方法。但是,我在 'SecondaryPage' 上收到一条错误消息:SecondaryPage 是 class 类型,不能在此表达式中使用。有什么想法吗?
我需要在几个页面之间导航
我发现检查 App.vb 提供了答案。我调查了应用程序如何自动加载第一页。
在VB.NET中是
Frame.Navigate(GetType(SecondaryPage))
查看互联网上的各种资源,我发现
Frame.Navigate(typeof (SecondaryPage))
好像是切换页面的方法。但是,我在 'SecondaryPage' 上收到一条错误消息:SecondaryPage 是 class 类型,不能在此表达式中使用。有什么想法吗?
我需要在几个页面之间导航
我发现检查 App.vb 提供了答案。我调查了应用程序如何自动加载第一页。
在VB.NET中是
Frame.Navigate(GetType(SecondaryPage))