我看了很长时间的MSDN文档,我开始认为这个编辑器只定义为内部编辑器。我猜想它类似于CollectionEditor,尽管它确实提供了任何特定于ToolStripItem的元素。
EditorAttribute(typeof(System.ComponentModel.Design.CollectionEditor),
(System.Drawing.Design.UITypeEditor)型
有谁知道这个编辑器的类-- ToolStrip.Items使用的类?
发布于 2010-07-09 10:42:47
看起来它是来自于System.Windows.Forms.Design.ToolStripCollectionEditor程序集的System.Design内部类:
[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
{
...
}https://stackoverflow.com/questions/3211695
复制相似问题