如何在C#中删除窗口的标题栏
I would like to remove form frame in c#
Picture:
http://img251.imageshack.us/img251/9114/87017773.jpg
Anyone know how can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 WinForms 中,您可以将表单上的
FormBorderStyle
属性设置为None
。In WinForms you can set the
FormBorderStyle
property on the form toNone
.(我将其添加为第二个答案,以更清楚地表明华莱士实际上首先得到了正确的答案。我有几次失败的尝试!)
将
FormBorderStyle
属性设置为None.示例代码:
(I've added this as a second answer to make it clearer that Wallace actually got the right answer first. I had a couple of failed attempts!)
Set the
FormBorderStyle
property toNone
. Sample code:如果您使用的是 WPF,请尝试
Window.WindowStyle = WindowStyle.None
。Try
Window.WindowStyle = WindowStyle.None
if you're using WPF.