繁体   English   中英

C#中的WPF页面导航

[英]WPF page navigation in c#

我正在尝试学习C#和WPF应用程序。 在这里,我试图在按钮单击事件上从一个WPF页面(MainWindow.xaml)重定向到另一个(HandWash.xaml)。 但是下面的代码抛出NULLReferenceException。 这是MainWindow.xaml文件。

<Window x:Class="MyApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    d:DesignHeight="720" d:DesignWidth="1284"
    Title="StartPage" WindowStartupLocation="CenterScreen" WindowStyle="None" WindowState="Maximized" Closed="Window_Closed">
<Window.Background>
    <ImageBrush ImageSource="/Images/StartPage.png"></ImageBrush>
</Window.Background>
<Grid>
    <Button Content="Hand Wash" Height="794" HorizontalAlignment="Left" Name="HandWash" VerticalAlignment="Top" Width="353" FontSize="50" Background="Transparent" BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="HandWash_Click"/>
    <Button Content="Bathing" Height="794" HorizontalAlignment="Left" Margin="390,0,0,0" Name="Bathing" VerticalAlignment="Top" Width="301" FontSize="50" Background="Transparent" BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="Bathing_Click"/>
    <Button Content="Nail-Clip" Height="794" HorizontalAlignment="Left" Margin="730,0,0,0" Name="NailClip" VerticalAlignment="Top" Width="295" FontSize="50" Background="Transparent" BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="NailClip_Click"/>
    <Button Content="Teeth Brush" Height="794" HorizontalAlignment="Left" Margin="1067,0,0,0" Name="TeethBrush" VerticalAlignment="Top" Width="310" FontSize="50" Background="Transparent" BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="TeethBrush_Click"/>
</Grid>
</Window>

后台代码:

private void TeethBrush_Click(object sender, RoutedEventArgs e)
    {
        try
        {
            TeethBrush teeth = new TeethBrush(myarg);
            NavigationService navService = NavigationService.GetNavigationService(this);
            navService.Navigate(teeth);       // NULL REFERENCE EXCEPTION at this line
        }
        catch (NullReferenceException ex)
        {
            System.Windows.MessageBox.Show(ex.Message);
        }
    }

这是TeethBrush.xaml的代码:

<Page x:Class="MyApplication.TeethBrush"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  d:DesignHeight="720" d:DesignWidth="1284"
  Title="TeethBrush">

<Grid>

</Grid>
<Page.Background>
    <ImageBrush ImageSource="C:\Users\Tonmoy\Documents\Visual Studio 2010\Projects\MyKinectApp\MyKinectApp\Images\StartPage.png"></ImageBrush>
</Page.Background>

</Page>

后台代码是:

public TeethBrush(Myargs arg)
    {
        InitializeComponent();
        //Rest of the code
    }

请帮忙....

您需要在主窗口中有一个框架,在该框架中将托管页面的内容。 如果将以下名称空间添加到MainWindow:

xmlns:local="clr-namespace:System.Windows.Controls;assembly=PresentationFramework"

您可以在某处定义框架,例如在网格中:

<Grid>
    <local:Frame x:Name="mainFrame">            
    </local:Frame>
    ....

然后,您可以从事件处理程序进行导航,如下所示:

TeethBrush teeth = new TeethBrush(myarg);
this.mainFrame.Navigate(teeth);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM