如何使WinForms应用程序全屏运行我有一个WinForms应用程序,我试图使全屏(有点像什么VS在全屏幕模式)。目前我正在设置FormBorderStyle到None和WindowState到Maximized这给了我更多的空间,但它不覆盖任务栏,如果它是可见的。我还需要做些什么才能使用那个空间呢?关于积分,我能做些什么MenuStrip自动隐藏也放弃那个空间?
3 回答
开心每一天1111
TA贡献1836条经验 获得超13个赞
private void Form1_Load(object sender, EventArgs e){ this.TopMost = true; this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWindowState.Maximized;}
神不在的星期二
TA贡献1963条经验 获得超6个赞
private void Form1_Load(object sender, EventArgs e) { // hide max,min and close button at top right of Window this.FormBorderStyle = FormBorderStyle.None; // fill the screen this.Bounds = Screen.PrimaryScreen.Bounds; }
this.TopMost = true;
alt+tab
- 3 回答
- 0 关注
- 569 浏览
添加回答
举报
0/150
提交
取消