以编程方式将项目添加到菜单栏?

发布于 2024-09-17 12:22:18 字数 113 浏览 4 评论 0原文

假设我有一个 WinForm,其中有一个菜单条。假设此菜单条的其中一项名为“汽车”。

每当我打开 WinForm 时,我想在汽车下为表中的每辆车添加一个子项。

这可以用代码来做吗?

Let's say I have a WinForm that has a menu strip in it. Let's say one of the items of this menu strip is named Cars.

Whenever I open my WinForm, I want to add a subitem under Cars for every car in a table.

Is this possible to do with code?

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

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

发布评论

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

评论(1

偏爱自由 2024-09-24 12:22:19
string[] cars = new string[]{"Volvo", "SAAB"};

foreach (var car in cars)
{
    ToolStripItem subItem = new ToolStripMenuItem(car);
    carsToolStripMenuItem.DropDownItems.Add(subItem);
}

注意:如果向子项添加事件,请确保在重复刷新列表时取消订阅该事件,否则会出现内存泄漏。

注意2:如果您有很多项目,则应使用DropDownItems.AddRange

string[] cars = new string[]{"Volvo", "SAAB"};

foreach (var car in cars)
{
    ToolStripItem subItem = new ToolStripMenuItem(car);
    carsToolStripMenuItem.DropDownItems.Add(subItem);
}

Note: If you add an event to the subItem, make sure you unsubscribe to that event if you are refreshing the list repeatedly, otherwise you will have a memory leak.

Note2: If you have many items you should use DropDownItems.AddRange instead for performance reasons.

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