如何在 C# 中以编程方式连接 ToolStripButton 事件?

发布于 2024-07-04 22:45:36 字数 261 浏览 7 评论 0原文

我以编程方式将 ToolStripButton 项添加到上下文菜单中。

那部分很容易。

this.tsmiDelete.DropDownItems.Add("The text on the item.");

但是,我还需要连接事件,以便当用户单击该项目时实际会发生一些事情!

我该怎么做呢? 处理单击的方法还需要接收与用户单击的特定 ToolStripButton 相关的某种 id 或对象。

I'm programmatically adding ToolStripButton items to a context menu.

That part is easy.

this.tsmiDelete.DropDownItems.Add("The text on the item.");

However, I also need to wire up the events so that when the user clicks the item something actually happens!

How do I do this? The method that handles the click also needs to receive some sort of id or object that relates to the particular ToolStripButton that the user clicked.

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

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

发布评论

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

评论(2

浮生未歇 2024-07-11 22:45:36

不能直接订阅Click事件吗? 像这样的东西:

ToolStripButton btn = new ToolStripButton("The text on the item.");
this.tsmiDelete.DropDownItems.Add(btn);
btn.Click += new EventHandler(OnBtnClicked);

OnBtnClicked 将这样声明:

private void OnBtnClicked(object sender, EventArgs e)
{
    ToolStripButton btn = sender as ToolStripButton;

    // handle the button click
}

发送者应该是 ToolStripButton,因此您可以投射它并用它做任何您需要做的事情。

Couldn't you just subscribe to the Click event? Something like this:

ToolStripButton btn = new ToolStripButton("The text on the item.");
this.tsmiDelete.DropDownItems.Add(btn);
btn.Click += new EventHandler(OnBtnClicked);

And OnBtnClicked would be declared like this:

private void OnBtnClicked(object sender, EventArgs e)
{
    ToolStripButton btn = sender as ToolStripButton;

    // handle the button click
}

The sender should be the ToolStripButton, so you can cast it and do whatever you need to do with it.

甜点 2024-07-11 22:45:36

感谢您对安迪的帮助。 我现在唯一的问题是 AutoSize 不适用于我添加的 ToolStripButtons! 他们都太狭窄了。

这很奇怪,因为它很早就开始工作了。


更新:以编程方式创建的 ToolStripButton 的 AutoSize 肯定有问题。 不过,我找到了一个解决方案:

  1. 创建 ToolStripButton。
  2. 创建一个标签控件并设置字体属性以匹配您的按钮。
  3. 设置标签文本以匹配您的按钮。
  4. 将标签设置为“自动调整大小”。
  5. 读取标签的宽度并使用它来设置 ToolStripButton 的宽度。

这很hacky,但是很有效。

Thanks for your help with that Andy. My only problem now is that the AutoSize is not working on the ToolStripButtons that I'm adding! They're all too narrow.

It's rather odd because it was working earlier.


Update: There's definitely something wrong with AutoSize for programmatically created ToolStripButtons. However, I found a solution:

  1. Create the ToolStripButton.
  2. Create a label control and set the font properties to match your button.
  3. Set the text of the label to match your button.
  4. Set the label to AutoSize.
  5. Read the width of the label and use that to set the width of the ToolStripButton.

It's hacky, but it works.

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