在C# XAML應(yīng)用中,可以使用以下技巧來實現(xiàn)導(dǎo)航功能:
// 在代碼中導(dǎo)航到其他頁面
Frame.Navigate(typeof(OtherPage));
// 在代碼中導(dǎo)航到其他頁面
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));
}
// 在代碼中導(dǎo)航到其他頁面并傳遞參數(shù)
Frame.Navigate(typeof(OtherPage), parameter);
通過以上技巧,可以在C# XAML應(yīng)用中實現(xiàn)靈活、方便的導(dǎo)航功能,提升用戶體驗和應(yīng)用的交互性。