0

私はMSDNのドキュメントを長い間見てきましたが、このエディタは内部のみとして定義されていると思い始めています。これはToolStripItem固有の要素を提供しますが、CollectionEditorに似ていると思います。

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

ToolStrip.Itemsが使用するこのエディターのクラスを知っている人はいますか?

4

1 に答える 1

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
{
...
}
于 2010-07-09T10:42:47.560 に答える