WPF设置全屏的方法

定义如下函数:

[csharp]  view plain copy
  1. private void Window_Loaded(object sender, RoutedEventArgs e)    
  2. {    
  3.     // 设置全屏    
  4.     this.WindowState = System.Windows.WindowState.Normal;    
  5.     this.WindowStyle = System.Windows.WindowStyle.None;    
  6.     this.ResizeMode = System.Windows.ResizeMode.NoResize;    
  7.     this.Topmost = true;    
  8.     
  9.     this.Left = 0.0;    
  10.     this.Top = 0.0;    
  11.     this.Width = System.Windows.SystemParameters.PrimaryScreenWidth;    
  12.     this.Height = System.Windows.SystemParameters.PrimaryScreenHeight;    
  13. }   


如果需要在初始化的时候就全屏,可以重写WIndow_Loaded,也就是点击主窗体,然后在右侧Event中双击Loaded,之后会出现重写Window_Loaded函数,把上面代码复制进去即可。

你可能感兴趣的:(WPF设置全屏的方法)