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.
如何从 Windows 窗体中隐藏标题栏但仍有调整大小的框架?
设置 FormBorderStyle = None 将删除标题栏(在设计和运行时) - 并且还会删除您调整表单大小的能力。
如果你需要一个边框,你可以设置:
ControlBox = false Text = ""
将窗体的 ControlBox 属性设置为 False,将 Text 属性设置为空字符串。表单将打开,没有可感知的(用户)标题栏,但他们将能够调整表单的大小。