如何从 dll 在主窗体中添加菜单?

发布于 2024-11-14 17:37:01 字数 77 浏览 1 评论 0原文

我有一个引用 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 技术交流群。

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

发布评论

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

评论(1

忆伤 2024-11-21 17:37:01

目前尚不清楚这些表单之间的交互,但我认为您必须将主表单引用传递给其他表单,以允许它修改主表单控件。

像这样的:

MainForm:

Form2 form2=new Form2(this);

Form2:

private MainForm mainForm;
public Form2(MainForm mainForm)
{
this.mainForm=mainForm;
}

private void DoSomething()
{
this.mainForm.Controls. ....
}

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 form2=new Form2(this);

Form2:

private MainForm mainForm;
public Form2(MainForm mainForm)
{
this.mainForm=mainForm;
}

private void DoSomething()
{
this.mainForm.Controls. ....
}

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/

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