允许我创建自定义属性表单的组件是什么?我的意思是,这样的组件:
我正在尝试制作一个编辑器,所以我需要那个组件。
答案 0 :(得分:4)
这是通过很多方面完成的。如果您使用PropertyGrid
,我建议您阅读:Getting the Most Out of the .NET Framework PropertyGrid Control。
特别是,“Providing a Custom UI for Your Properties”描述了创建自定义UITypeEditor的过程。此外,它还讨论了TypeConverter
以及PropertyGrid
用于处理自定义类型编辑的属性。
答案 1 :(得分:0)
您必须查看UITypeEditor
和EditorAttribute
。那里有很多例子。