ToolStrip.Items 的 UITypeEditor 是什么?
我仔细浏览了 MSDN 文档,我开始认为这个编辑器被定义为仅限内部。我猜它与 CollectionEditor 类似,尽管它确实提供了任何 ToolStripItem 特定元素。
[EditorAttribute(typeof(System.ComponentModel.Design.CollectionEditor), typeof(System.Drawing.Design.UITypeEditor))]
有谁知道这个编辑器的类 - ToolStrip.Items 使用的那个类?
I've had a long look through MSDN documentation and all I'm starting to think that this editor is defined as Internal only. I'm guessing it is similar to the CollectionEditor, though this does provide any ToolStripItem specific elements.
[EditorAttribute(typeof(System.ComponentModel.Design.CollectionEditor), typeof(System.Drawing.Design.UITypeEditor))]
Does anyone know the class for this editor - the one which ToolStrip.Items uses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来它是 System.Design 程序集中的 System.Windows.Forms.Design.ToolStripCollectionEditor 内部类:
Looks like it is System.Windows.Forms.Design.ToolStripCollectionEditor internal class from the System.Design assembly: