如何从App.xaml.cs导航到其他页面?

时间:2019-04-15 06:55:58

标签: c# wpf

所以我的应用程序中有不同的页面。由于我希望所有这些页面上都有一个菜单栏,因此我在App.xaml中做了以下内容。

我通常会使用NavigationService在不同页面之间导航。 但是,如何从App.xaml.cs导航到其他页面。

<Application.Resources>
        <Menu x:Key="Menu">
            <DockPanel  VerticalAlignment="Top">
                <Menu DockPanel.Dock="Top" FontSize="14">
                    <MenuItem Header="_File">
                        <Separator />
                        <MenuItem Header="_Exit" />
                    </MenuItem>
                    <MenuItem Header="_Statussen" Click="MenuItem_OnClick"/>
                    <MenuItem Header="_TipsTricks" />
                </Menu>
            </DockPanel>
        </Menu>
    </Application.Resources>

我在menuitem上获得了StatusstatPage.xaml等页面,单击它应该显示该页面等。

在我的App.xaml.cs中添加了以下代码:

        Page testpage = new TipsTricksPage();

        private void MenuItem_OnClick(object sender, RoutedEventArgs e)
        {
            testpage.NavigationService.Navigate(new TipsTricksPage());
        }

并出现以下错误: System.NullReferenceException

1 个答案:

答案 0 :(得分:0)

在最佳实践中,您应使用MainWindow启动您的应用

在App.xaml中

<Application x:Class="projectname.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:Banc_Suspension_SAHD"
             StartupURI="MainWindow.xaml.cs" // Right here !
             Exit="App_Exit">

然后,在您的MainWindow(应用启动时直接打开)中,您可以创建菜单 并在MainWindow.cs中处理点击事件。

在MainWindow.Xaml.cs

<Window x:Class="projectname.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d">
    <Grid>
            <Menu>
                <MenuItem Header="Re-Impression PV">
                    <MenuItem Click = "MyActionClick"></MenuItem>
                    <MenuItem></MenuItem>
                </MenuItem>
            <Menu/>
      </Grid>
</Window>

在MainWindow.cs

        private void MyActionClick(object sender, RoutedEventArgs e)
        {
            //Your code
        }