分享

WPF窗口跳转及window和page区别

 北海藏经阁 2012-05-09

WPF窗口跳转及window和page区别

978人阅读 评论(0) 收藏 举报


         刚接触WPF,有两个概念不是很懂,现理解如下:

         1:window和page谁包含谁的问题

         一新建WPF应用程序,发现默认启动界面是一个window,将默认启动改为page,没有错误。但是如果在page中执行如下程序报错:

         this.content = new Window1();

         错误信息是:window是在属性结构的根目录。那么,我们可以理解为,window包含page,而不是反之。

         2:登录界面(窗口跳转)

         既然WPF的默认启动界面是一个窗口window,那么我也默认理解整个应用程序最上层最好是一个window(虽然全部是page也不会出错)。这大概是习惯使然,因为老的winform程序嘛,大家都是window。

         那么,涉及到登录,就有个窗口之间的跳转,貌似没有好的方法,只能在登录的window中:

view plaincopy to clipboardprint?
WinMain wm = new WinMain();  
wm.Show();  
wm.WindowState = WindowState.Maximized;  
this.Close(); 
WinMain wm = new WinMain();
wm.Show();
wm.WindowState = WindowState.Maximized;
this.Close();
 

 

 

         3:页面跳转(page跳转)

前台转:

 


view plaincopy to clipboardprint?
<TextBlock FontSize="24" TextWrapping="Wrap" Margin="0,0,0,-19.998"> 
            <Hyperlink x:Name="LnkPre" NavigateUri="Page2.xaml" Foreground="Black"> 
                Enter Page2  
             </Hyperlink> 
</TextBlock> 
<TextBlock FontSize="24" TextWrapping="Wrap" Margin="0,0,0,-19.998">
            <Hyperlink x:Name="LnkPre" NavigateUri="Page2.xaml" Foreground="Black">
                Enter Page2
             </Hyperlink>
</TextBlock>
 

 

后台转:


view plaincopy to clipboardprint?
NavigationService.GetNavigationService(this).Navigate(new Uri("Page2.xaml", UriKind.Relative));  
NavigationService.GetNavigationService(this).GoForward();向后转  
NavigationService.GetNavigationService(this).GoBack();  向前转 
 NavigationService.GetNavigationService(this).Navigate(new Uri("Page2.xaml", UriKind.Relative));
 NavigationService.GetNavigationService(this).GoForward();向后转
 NavigationService.GetNavigationService(this).GoBack();  向前转
 


在后台跳转中,还有一个更简单的用法是:

this.content = new Page2();

 

 


        4:windows跳转到page

view plaincopy to clipboardprint?
NavigationWindow window = new NavigationWindow();  
  window.Source = new Uri("Page1.xaml", UriKind.Relative);  
  window.Show(); 

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多