如何在代码中重新排序ToolStrip项目

时间:2008-11-11 16:31:59

标签: c#

如何以编程方式对C#中的ToolStrip上的项目进行编程。

感谢。

1 个答案:

答案 0 :(得分:9)

通过使用Items集合的Insert()方法并指定我想要项目的索引,我找到了解决这个问题的方法。

toolStrip1.Items.Insert(0, myButton);