如何在 C# 中的所有按钮上设置鼠标移动时的手形光标?

发布于 2024-11-30 21:54:25 字数 129 浏览 2 评论 0原文

我一直在手动设置每个按钮的事件,但如何概括这一点?

我想我可以覆盖 ButtonBase,但我该怎么做呢?我是一个相对较新的 C# 程序员,我需要这个,因为我正在模拟真实的设备,所以我需要更改光标,以便用户知道他们可以单击哪里。

I've been setting each button's events manually, but how can I generalize this?

I suppose I could override ButtonBase, but how do I do that? I'm a relatively new C# programmer and I need this because I'm simulating a real device, so I need the cursor to change so the user will know where they can click.

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

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

发布评论

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

评论(3

天荒地未老 2024-12-07 21:54:25

如果所有按钮都在表单上(没有嵌套容器),那么您可以在 Form_Load() 上执行类似的操作

foreach(Button b in this.Controls.OfType<Button>())
{
    b.MouseEnter += (s, e) => b.Cursor = Cursors.Hand;
    b.MouseLeave += (s, e) => b.Cursor = Cursors.Arrow;
}

如果您不想触摸表单上的每个按钮,您可以执行一个简单的操作收集并迭代它们

Button[] buttons = new[] {button1, button2, button3};

foreach (Button b in buttons)
{
    b.MouseEnter += (s, e) => b.Cursor = Cursors.Hand;
    b.MouseLeave += (s, e) => b.Cursor = Cursors.Arrow;
}

If all the buttons are on the form (no nesting containers) then you can do something like this on Form_Load()

foreach(Button b in this.Controls.OfType<Button>())
{
    b.MouseEnter += (s, e) => b.Cursor = Cursors.Hand;
    b.MouseLeave += (s, e) => b.Cursor = Cursors.Arrow;
}

If you don't want to touch every button on the form, you can do a simple collection and iterate over them

Button[] buttons = new[] {button1, button2, button3};

foreach (Button b in buttons)
{
    b.MouseEnter += (s, e) => b.Cursor = Cursors.Hand;
    b.MouseLeave += (s, e) => b.Cursor = Cursors.Arrow;
}
所谓喜欢 2024-12-07 21:54:25

创建一个新的“类库”项目并创建一个如下所示的新类:

public class ExtendedButton:Button
{
    public ExtendedButton()
    {
        MouseEnter += (s, e) => Cursor = Cursors.Hand;
        MouseLeave += (s, e) => Cursor = Cursors.Arrow;
    }
}

在 Windows 窗体项目上,添加对新库的引用,并在窗体上添加 ExtendedButton 控件而不是 Button。

Create a new "Class Library" project and make a new class like this:

public class ExtendedButton:Button
{
    public ExtendedButton()
    {
        MouseEnter += (s, e) => Cursor = Cursors.Hand;
        MouseLeave += (s, e) => Cursor = Cursors.Arrow;
    }
}

On a Windows Form project, add a reference to your new library and on the form, add an ExtendedButton control instead of Button.

静若繁花 2024-12-07 21:54:25

您可以在 Visual Studio 设计器中完成此操作。通过Ctrl单击选择所有按钮并更改光标属性

You can do it in Visual Studio Designer. Select all buttons by Ctrl-click'ing and change the Cursor property.

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