什么是ToolStrip.Items的UITypeEditor?

时间:2010-07-09 10:22:26

标签: .net winforms toolstrip

我已经仔细研究了MSDN文档,我开始认为这个编辑器只定义为内部编辑器。我猜它类似于CollectionEditor,虽然这确实提供了任何ToolStripItem特定元素。

  

[EditorAttribute(typeof(System.ComponentModel.Design.CollectionEditor),typeof(System.Drawing.Design.UITypeEditor))]

有没有人知道这个编辑器的类 - ToolStrip.Items使用的那个?

1 个答案:

答案 0 :(得分:2)

看起来它是System.Design程序集中的System.Windows.Forms.Design.ToolStripCollectionEditor内部类:

[Editor("System.Windows.Forms.Design.ToolStripCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
public class ToolStripItemCollection : ArrangedElementCollection, IList, ICollection, IEnumerable
{
...
}