在帖子How do I have an enum bound combobox with custom string formatting for enum values?中,How to set space on Enum显示了如何向Enum值添加说明,以便能够添加在将组合框绑定到字符串值时可用的空格。我的情况是这个组合框的选定项目也绑定到另一个控件。 使用我在该链接中找到的解决方案,我得到的所选项目的值仍然是没有空格的枚举值。
My Enum如下所示
[TypeConverter(typeof(EnumToStringUsingDescription))]
public enum SCSRequestType {
[Description ("Change Request")]
ChangeRequest = 4,
[Description("Documentation")]
Documentation = 9,....
}
我也在使用下面的typeconverter。
public class EnumToStringUsingDescription : TypeConverter
{
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return (sourceType.Equals(typeof(Enum)));
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return (destinationType.Equals(typeof(String)));
}
public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)
{
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
{
if (!destinationType.Equals(typeof(String)))
{
throw new ArgumentException("Can only convert to string.", "destinationType");
}
if (!value.GetType().BaseType.Equals(typeof(Enum)))
{
throw new ArgumentException("Can only convert an instance of enum.", "value");
}
string name = value.ToString();
object[] attrs =
value.GetType().GetField(name).GetCustomAttributes(typeof(DescriptionAttribute), false);
return (attrs.Length > 0) ? ((DescriptionAttribute)attrs[0]).Description : name;
}
}
我在这里遗漏了什么,我怎么能强制组合框的选定项目是Enum值描述的值。我也愿意接受替代方案。
答案 0 :(得分:0)
我找到的最佳方式是post。它会创建一个标记扩展,然后您只需绑定到您的组合框。
答案 1 :(得分:0)
或者您可以设置扩展程序。在命名空间的顶层创建public static class Extensions
。在那里你创建了这个方法:
public static string getDescription(this SCSRequestType scs)
{
switch (scs)
{
case SCSRequestType.ChangeRequest:
return "Change Request";
case SCSRequestType.Documentation:
return "Documentation";
default:
return null;
}
}
最后,请致电string description = SCSRequestType.ChangeRequest.getDescription();
以访问说明。