我使用
ModernUI.我有一个问题与按钮和链接.
我试图通过Button Click事件导航,我在“Home.xaml”中的代码如下所示
private void addGameButton_Click(object sender,RoutedEventArgs e) { BBCodeBlock bs = new BBCodeBlock(); try { bs.LinkNavigator.Navigate(new Uri("pack://application:/Pages/AddGame.xaml"),null); } catch (Exception error) { ModernDialog.ShowMessage(error.Message,FirstFloor.ModernUI.Resources.NavigationFailed,MessageBoxButton.OK); } }
mui:链接在MainWindows.xaml中正常工作以进行导航.但我想通过Home.xaml页面中的Button导航到Home.xaml Page的AddGame.xaml.
我的文件结构如下,供参考.
所以请告诉我,我在哪里做错了?
解决方法
@H_502_15@ bs.LinkNavigator.Navigate方法的第二个参数是不能为null的源.试试这个:private void addGameButton_Click(object sender,RoutedEventArgs e) { BBCodeBlock bs = new BBCodeBlock(); try { bs.LinkNavigator.Navigate(new Uri("/Pages/AddGame.xaml",UriKind.Relative),this); } catch (Exception error) { ModernDialog.ShowMessage(error.Message,MessageBoxButton.OK); } }