在C# XAML應用中,可以使用以下技巧來實現導航功能:
// 在代碼中導航到其他頁面
Frame.Navigate(typeof(OtherPage));
// 在代碼中導航到其他頁面
NavigationService.Navigate(new Uri("/OtherPage.xaml", UriKind.Relative));
<HyperlinkButton Content="Go to Other Page" NavigateUri="/OtherPage.xaml"/>
private void Button_Click(object sender, RoutedEventArgs e)
{
Frame.Navigate(typeof(OtherPage));
}
// 在代碼中導航到其他頁面并傳遞參數
Frame.Navigate(typeof(OtherPage), parameter);
通過以上技巧,可以在C# XAML應用中實現靈活、方便的導航功能,提升用戶體驗和應用的交互性。