C# 隐藏调整光标大小

发布于 2024-07-22 19:35:09 字数 92 浏览 7 评论 0原文

在我的程序中,我使用 WndProc 覆盖来阻止调整窗体大小。 事实是,当您将指针移动到表单边缘时,光标仍然在那里。

有什么办法可以隐藏这个光标吗?

In my program, I'm using the WndProc override to stop my form being resized. Thing is, the cursor is still there when you move the pointer to the edge of the form.

Is there any way to hide this cursor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

笑咖 2024-07-29 19:35:09

为什么不设置 FormBorderStyle 属性是否适当? 那么您也不需要使用WndProc

以下是一些示例代码来演示 - 单击按钮以切换是否可以调整表单大小:

using System;
using System.Windows.Forms;
using System.Drawing;

class Test
{   
    [STAThread]
    static void Main(string[] args)
    {
        Button button = new Button 
        {
            Text = "Toggle border",
            AutoSize = true,
            Location = new Point(20, 20)
        };
        Form form = new Form
        {
            Size = new Size (200, 200),
            Controls = { button },
            FormBorderStyle = FormBorderStyle.Fixed3D
        };
        button.Click += ToggleBorder;
        Application.Run(form);
    }

    static void ToggleBorder(object sender, EventArgs e)
    {
        Form form = ((Control)sender).FindForm();
        form.FormBorderStyle = form.FormBorderStyle == FormBorderStyle.Fixed3D
            ? FormBorderStyle.Sizable : FormBorderStyle.Fixed3D;
    }
}

Why not set the FormBorderStyle property appropriately instead? Then you don't need to use WndProc either.

Here's some sample code to demonstrate - click the button to toggle whether or not the form can be resized:

using System;
using System.Windows.Forms;
using System.Drawing;

class Test
{   
    [STAThread]
    static void Main(string[] args)
    {
        Button button = new Button 
        {
            Text = "Toggle border",
            AutoSize = true,
            Location = new Point(20, 20)
        };
        Form form = new Form
        {
            Size = new Size (200, 200),
            Controls = { button },
            FormBorderStyle = FormBorderStyle.Fixed3D
        };
        button.Click += ToggleBorder;
        Application.Run(form);
    }

    static void ToggleBorder(object sender, EventArgs e)
    {
        Form form = ((Control)sender).FindForm();
        form.FormBorderStyle = form.FormBorderStyle == FormBorderStyle.Fixed3D
            ? FormBorderStyle.Sizable : FormBorderStyle.Fixed3D;
    }
}
樱&纷飞 2024-07-29 19:35:09

感谢 Lasse 发给我的链接,我找到了一种使用 WndProc 的方法。 感谢您的回复乔恩,但这并不完全是我想要的。 对于那些想知道我是如何做到的人,我使用了这个:

    protected override void WndProc(ref Message m)
    {
        const int WM_NCHITTEST = 0x0084;

        switch (m.Msg)
        {
            case WM_NCHITTEST:
                return;
        }

        base.WndProc(ref m);
    }

我还没有彻底测试它,所以不知道是否有任何副作用,但目前对我来说效果很好:)。

I have found a way using WndProc thanks to the link Lasse sent me. Thanks for your reply Jon but it wasn't exactly what I wanted. For those who want to know how I did it, I used this:

    protected override void WndProc(ref Message m)
    {
        const int WM_NCHITTEST = 0x0084;

        switch (m.Msg)
        {
            case WM_NCHITTEST:
                return;
        }

        base.WndProc(ref m);
    }

I haven't tested it thoroughly so don't know if there are any side-effects but it works fine for me at the moment :).

青丝拂面 2024-07-29 19:35:09

只需设置 FormBorderStyle 就足够了。 为什么要使用 WndProc 来实现这个目的?

Just setting FormBorderStyle is enough for this. Why are you using WndProc for this?

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