Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经设置this.WindowState = FormWindowState.Maximized;好了,一切看起来都不错,但是 Windows 的打开窗口图标(例如我在页面底部的浏览器)仍然可见。
this.WindowState = FormWindowState.Maximized;
如何让它不可见?
我只是想出答案 TopMost必须与and true一起设置。FormBorderStyle = FormBorderStyle.NoneBounds = Screen.PrimaryScreen.Bounds
TopMost
true
FormBorderStyle = FormBorderStyle.None
Bounds = Screen.PrimaryScreen.Bounds