C# WinForm 技巧十: winfrom 全屏自适应屏幕分辨率
时间: 2023-07-12 08:21:47 浏览: 176
实现WinForm全屏自适应屏幕分辨率的方法如下:
1. 设置FormBorderStyle属性为None,这样就可以去掉窗口边框。
2. 设置WindowState属性为Maximized,将窗口最大化。
3. 在Form的Load事件中,使用以下代码:
```
this.WindowState = FormWindowState.Normal;
this.FormBorderStyle = FormBorderStyle.None;
this.Bounds = Screen.PrimaryScreen.Bounds;
```
这样就可以实现窗口全屏自适应屏幕分辨率的效果了。
另外,如果想要在窗口大小改变时保持全屏自适应的效果,可以在Form的Resize事件中添加以下代码:
```
this.Bounds = Screen.PrimaryScreen.Bounds;
```
阅读全文