如何:创建导航框架
更新:2007 年 11 月
本示例演示如何创建导航到外部网站和应用程序页的 Frame 控件。
示例
下面的可扩展应用程序标记语言 (XAML) 示例演示如何创建 Frame 控件。
<Frame Name = "myFrame" Grid.Column="0" Grid.Row="1"
Background="LightBlue"/>
下面的示例演示如何导航到外部网站和应用程序页。
private void BrowseAHomePage(object sender, RoutedEventArgs e)
{
if ((Boolean)VisualBasic.IsChecked)
myFrame.Navigate(new System.Uri("https://msdn.microsoft.com/vbasic/"));
else if ((Boolean)VisualCSharp.IsChecked)
myFrame.Navigate(new System.Uri("https://msdn.microsoft.com/vcsharp/"));
else if ((Boolean)AnotherPage.IsChecked)
myFrame.Navigate(new System.Uri("AnotherPage.xaml",
UriKind.RelativeOrAbsolute));
}
有关完整示例,请参见Frame 示例。