如何在C#中删除窗口的标题栏

发布于 2024-09-14 18:28:02 字数 197 浏览 7 评论 0原文

我想删除c#

图片中的表单框架: http://img251.imageshack.us/img251/9114/87017773.jpg

有人知道我该怎么做吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

恰似旧人归 2024-09-21 18:28:02

在 WinForms 中,您可以将表单上的 FormBorderStyle 属性设置为 None

In WinForms you can set the FormBorderStyle property on the form to None.

淡淡離愁欲言轉身 2024-09-21 18:28:02

(我将其添加为第二个答案,以更清楚地表明华莱士实际上首先得到了正确的答案。我有几次失败的尝试!)

FormBorderStyle 属性设置为 None.示例代码:

using System;
using System.Windows.Forms;

public class Test
{
    [STAThread]
    static void Main()
    {
        Button button = new Button { Text = "Click to close" };
        Form form = new Form
        {
            Controls = { button },
            FormBorderStyle = FormBorderStyle.None,
        };
        button.Click += delegate { form.Close(); };

        Application.Run(form);
    }
}

(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 to None. Sample code:

using System;
using System.Windows.Forms;

public class Test
{
    [STAThread]
    static void Main()
    {
        Button button = new Button { Text = "Click to close" };
        Form form = new Form
        {
            Controls = { button },
            FormBorderStyle = FormBorderStyle.None,
        };
        button.Click += delegate { form.Close(); };

        Application.Run(form);
    }
}
凡尘雨 2024-09-21 18:28:02

如果您使用的是 WPF,请尝试 Window.WindowStyle = WindowStyle.None

Try Window.WindowStyle = WindowStyle.None if you're using WPF.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文