博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

WPF窗口跳转及window和page区别

Posted on 2011-03-30 14:31  codingsilence  阅读(1762)  评论(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();