本文介绍了动态添加新的子按钮到menustrip,然后访问每个按钮控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何动态添加新的子按钮到menustrip,然后访问每个按钮控件?

how do i Dynamically add new sub buttons to the menustrip and then access each buttons controls??

推荐答案

感谢您在此处发帖。

>>如何动态添加新的子按钮到menustrip,然后访问每个按钮控件??

您的意思是将菜单项添加到WinForm中的menustrip控件吗?

Do you mean add menu items to the menustrip control in WinForm?

MenuStrip 是取代
的顶级容器
MainMenu
。从功能上讲,。您可以使用工具 Strip 项目。辅助功能对象获取

AccessibleObject
分配给控制。

MenuStrip is the top-level container that supersedesMainMenu. Functionally, ToolStripDropDownItem and ToolStripMenuItem work along with MenuStrip, although they are derived from ToolStripItem. You could use ToolStripItem.AccessibilityObject to get theAccessibleObject assigned to the control.

以下是您作为参考的示例。

Here is a sample for you as a reference.

https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls / how-to-add-toolstrip-items-dynamics

希望这对你有帮助。

此外,如果你在处理WinForm控件时,我会将您的案例移至WinForm论坛以获得更好的支持。

Besides, if you're dealing with WinForm controls, I will move your case to WinForm Forum for better support.

您的理解与合作将不胜感激。

Your understanding and cooperation will be grateful.

Best此致,

Baron Bi


这篇关于动态添加新的子按钮到menustrip,然后访问每个按钮控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 00:05