本文介绍了如何在表单边框样式设置为none时最大化窗口大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要根据系统的当前分辨率自动调整我的表单。
所以我需要在Formborder Style设置为None时最大化我的所以No Maximize并且最小化不可用。
如何以程序方式执行此操作
I need to auto adjust my form according to the current resolution of System.
So I need to Maximize my when Formborder Style is set to None so No Maximize and Minimize is not available.
How to do this programitically
推荐答案
this.WindowState = FormWindowState.Maximized;
this.FormBorderStyle = FormBorderStyle.None;
this.TopMost = true;
这篇关于如何在表单边框样式设置为none时最大化窗口大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!