编辑 PropertyGrid 中枚举成员的显示名称
我有一个属性网格,用户可以使用它来为我的应用程序中使用的任何插件配置对象。我希望能够告诉编写插件的开发人员为其成员使用 ComponentModel 属性,如下所示:
[CategoryAttribute("On Screen Display Settings"),
DescriptionAttribute("Whether or not to show the session timer."),
DisplayName("Show Session Timer")]
public bool ShowTimer
{
get;
set;
}
这非常有效。现在我希望枚举的成员也能够被编辑。即
public enum Resolution_ : byte
{
DCIF,
CIF,
QCIF,
[DisplayName("4CIF")]
CIF4,
[DisplayName("2CIF")]
CIF2
}
,以便它们显示在 PropertyGrid 的列表中,如下所示:
DCIF
CIF
QCIF
CIF4
CIF2
以及它们可能具有的任何描述和显示名称。
看来我只能用属性、事件和方法来做到这一点。有谁知道我该如何进行枚举?
I have a property grid that I am using for users to be able to configure objects for any plugin that is written to be used in my application. I would like to be able to tell developers writing plugins to use the ComponentModel Attributes for their members like so:
[CategoryAttribute("On Screen Display Settings"),
DescriptionAttribute("Whether or not to show the session timer."),
DisplayName("Show Session Timer")]
public bool ShowTimer
{
get;
set;
}
This works great. Now I would like for the members of an enumeration to be able to be edited as well. i.e.
public enum Resolution_ : byte
{
DCIF,
CIF,
QCIF,
[DisplayName("4CIF")]
CIF4,
[DisplayName("2CIF")]
CIF2
}
So that they are displayed in the PropertyGrid's list like so:
DCIF
CIF
QCIF
CIF4
CIF2
Along with any Descriptions and Display names they may have with them.
It seems that I can only do this with properties, events, and methods. Does anyone know how I can do this for an enumeration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须创建一个
EnumConverter
类并使用TypeConverter
属性来装饰您的属性才能执行此操作。请参阅在 .NET 中使用 PropertyGrid,这是一个有趣的例子:
You will have to make an
EnumConverter
class and decorate your property with aTypeConverter
attribute in order to do this.See this Using PropertyGrid in .NET, it's a fun example:
您可以将自定义 TypeConverter 实现附加到其属性type 是您的枚举并覆盖 GetStandardValuesSupported 和 GetStandardValues 返回要在 PropertyGrid 的下拉列表中显示的自定义项目列表。然后,您可以重写 ConvertFrom/ConvertTo 方法来处理与枚举类型之间的值转换。
您可能还想覆盖 GetStandardValuesExclusive 并让它返回“true”,以便用户无法在属性值中输入任何内容。
因此,如下所示:
在 GetStandardValues/ConvertFrom/ConvertTo 的实现中,您可以使用 Reflection 提取各种枚举成员的 DisplayNameAttribute(或 DescriptionAttribute,可能更适合此任务)属性来显示文本而不是对要显示的项目列表进行硬编码。
You can attach a custom TypeConverter implementation to the property whose type is your enumeration and override the GetStandardValuesSupported and GetStandardValues to return a custom list of items to show in the drop-down list in the PropertyGrid. You can then override ConvertFrom/ConvertTo methods to handle converting values to/from your enumeration type.
You may also want to override GetStandardValuesExclusive and have it return "true" so the user can't type anything into the property value.
So, something like this:
In your implementation of GetStandardValues/ConvertFrom/ConvertTo you could then use Reflection to pull out the DisplayNameAttribute (or DescriptionAttribute, which may be more suited to this task) attributes of the various enum members to show that text instead of hard-coding the list of items to show.
我在此处给出的答案有一个有效的示例。以下是您想要的该示例中的特定代码:
The answer I gave here Has a working example of this. Here is the specific code from that example that you want:
这似乎也有效:
通过反射寻找 DisplayName 属性的组件会找到一个,据我所知,这是有效的。有理由认为这可能是一个坏主意吗?
This also seems to work:
Components looking for a DisplayName attribute via Reflection will find one, and as far as I can tell this works. Is there a reason why this might be a bad idea?