2

PropertyGrid在 WinForms 中使用。我可以更改默认值CollectionEditor吗?我可以像这样CollectionEditorEditor属性显示自定义:

[Editor("MyProgram.CustomCollectionEditor , MyProgram, Version=1.0.0.0, Culture=neutral, PublicKeyToken=neutral", typeof(UITypeEditor))]

但我不想将它用于所有属性。

4

1 回答 1

1

您可以EditorAttribute在属性上使用,因此只有应用了该属性的属性才有自定义编辑器。

我认为如何:控制集合编辑器的 PropertyGrid可能对您要完成的工作有所帮助。

于 2013-01-14T14:24:37.460 回答