如何获取选中的ToolStripMenuItem?
我正在使用带有两个主要 ToolStripMenuItems
的 MenuStrip
,其中每一个都有其“下拉菜单”,其中更多 ToolStripMenuItems 的 CheckOnClick
属性设置为真的。
现在我正在尝试检索所选项目,我知道 bool ToolStripMenuItem.Checked
存在,但是如何使用循环从每个主 ToolStripMenuItem 获取
然后检查哪一个有 .Cheked 是 == true?ToolStripMenuItems
或者是否有更好的方法来检索选中的ToolStripMenuItem
?
I am using a MenuStrip
with two main ToolStripMenuItems
, each one of those has its "dropdown" with more ToolStripMenuItems that have the CheckOnClick
property set to true.
Now I am trying to retrieve the selected item, I know bool ToolStripMenuItem.Checked
exists, but how can I use a loop to get the ToolStripMenuItems
from each main ToolStripMenuItem
and then check which one has .Cheked is == true?
Or is there a better way to retrieve the checked ToolStripMenuItem
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在使用 Linq,您可以执行以下操作:
Assume you are using Linq, here is what you can do: