改变WindowsPhone7程序的启动Page
在XAML中使用应用程序定义指定起始Page(它是启动 WindowsPhone7程序时自动加载的Page)。
指定方法是将 StartupUri 属性设置为所需的 Page 的 统一资源标识符 (URI)。
可以在标记中以声明方式设置 StartupUri,如下面的示例所示。
<Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSample.App"
StartupUri="PageWithHyperlink.xaml" />
此例中,StartupUri 特性设置为标识 HomePage.xaml 的相对 pack URI。当WindowsPhone7 APP 启动时,将自动导航到 HomePage.xaml 并显示该文件。
说明 |
---|
大多数情况下,Page 都编译到应用程序中,或者与应用程序一起部署。在这些情况下,标识 Page 的 URI 为 pack URI,这是符合 pack 方案的 URI。Pack URI 将在 WPF 中的 Pack URI 中进行深入讨论。 此外,还可以使用 http 方案导航到内容. |