如何从 dll 在主窗体中添加菜单?
我有一个引用 dll 的主窗体。 dll 内部还有一个窗体,它将在调用它的主窗体中添加附加菜单。我怎样才能做到这一点?请显示示例代码。谢谢。
I have a main form that reference to a dll. Inside the dll is also a form that will add additional menu in the main form that calls it. How can I do that? Please show sample codes. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚这些表单之间的交互,但我认为您必须将主表单引用传递给其他表单,以允许它修改主表单控件。
像这样的:
MainForm:
Form2:
updated
您还可以使用反射或动态类型。
看这里:
http://www.codeproject.com/KB/cs/csharpreflection.aspx< /a>
或此处使用动态:
http://msdn.microsoft.com/en-us/library/dd264736.aspx
这些示例是用 c# 编写的,但很容易使用如下工具在 vb.net 中进行转换:
http://converter.telerik.com/
It is unclear the interaction between those forms but I think you have to pass a main form reference to the other form allowing it to modify main form controls.
Something like this:
MainForm:
Form2:
updated
You can also use reflection or dynamic type.
look here:
http://www.codeproject.com/KB/cs/csharpreflection.aspx
or here for use of dynamic:
http://msdn.microsoft.com/en-us/library/dd264736.aspx
those example are in c# but it is easy to convert in vb.net with a tool like this:
http://converter.telerik.com/