你如何以编程方式在C#中的ToolStrip上重新排序项目.
谢谢.
通过使用Items集合的Insert()方法并指定我想要项目的索引,我找到了解决这个问题的方法.
即
toolStrip1.Items.Insert(0, myButton);