我有一个班级:
public class AccountDetail
{
public DetailScope Scope
{
get { return scope; }
set { scope = value; }
}
public string Value
{
get { return this.value; }
set { this.value = value; }
}
private DetailScope scope;
private string value;
public AccountDetail(DetailScope scope, string value)
{
this.scope = scope;
this.value = value;
}
}
和枚举:
public enum DetailScope
{
Private,
Business,
OtherDetail
}
最后,我有一个.xaml文件:
<Window x:Class="Gui.Wpf.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Test"
SizeToContent="WidthAndHeight">
<Grid>
<ComboBox
Name="ScopeComboBox"
Width="120"
Height="23"
Margin="12" />
</Grid>
</Window>
我想做两件事:
DetailsScope
枚举值绑定到组合框值。我不希望
直接绑定枚举值,因为最后一个枚举值将是OtherDetail
而不是
Other detail
(添加了空格字符和小写字母'd')。 AccountDetail
对象的实例。 更新:我发现了这篇文章http://blogs.msdn.com/b/wpfsdk/archive/2007/02/22/displaying-enum-values-using-data-binding.aspx。我需要类似的东西。
答案 0 :(得分:41)
一种非常简单的方法是使用ObjectDataProvider
<ObjectDataProvider MethodName="GetValues"
ObjectType="{x:Type sys:Enum}"
x:Key="DetailScopeDataProvider">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="local:DetailScope" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
使用ObjectDataProvider作为ComboBox的ItemsSource,将SelectedItem绑定到Scope属性并应用转换器来显示每个ComboBoxItem
<ComboBox Name="ScopeComboBox"
ItemsSource="{Binding Source={StaticResource DetailScopeDataProvider}}"
SelectedItem="{Binding Scope}"
Width="120"
Height="23"
Margin="12">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Converter={StaticResource CamelCaseConverter}}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
在转换器中,您可以在this问题中使用Regex for CamelCase字符串拆分器。我使用的是最先进的版本,但您可以使用更简单的版本。 OtherDetail +正则表达式=其他细节。使返回值更低然后返回带有第一个字符UpperCase的字符串应该给出预期结果
public class CamelCaseConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
string enumString = value.ToString();
string camelCaseString = Regex.Replace(enumString, "([a-z](?=[A-Z])|[A-Z](?=[A-Z][a-z]))", "$1 ").ToLower();
return char.ToUpper(camelCaseString[0]) + camelCaseString.Substring(1);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value;
}
}
答案 1 :(得分:11)
我一直这样做的方式如下。这个解决方案的优点在于它完全通用,可以重复用于任何枚举类型。
1)定义枚举时,请使用一些自定义属性来提供一些信息。在这个例子中,我使用了Browsable(false)来表示这个枚举器是内部的,我不想在组合框中看到这个选项。描述(“”)允许我指定枚举的显示名称。
public enum MyEnumerationTypeEnum
{
[Browsable(false)]
Undefined,
[Description("Item 1")]
Item1,
[Description("Item 2")]
Item2,
Item3
}
2)定义一个我称之为EnumerationManager的类。这是一个泛型类,用于分析Enumeration类型并生成值列表。如果枚举器将Browsable设置为false,则将跳过它。如果它具有Description属性,那么它将使用描述字符串作为显示名称。如果没有找到描述,它将只显示枚举器的默认字符串。
public class EnumerationManager
{
public static Array GetValues(Type enumeration)
{
Array wArray = Enum.GetValues(enumeration);
ArrayList wFinalArray = new ArrayList();
foreach(Enum wValue in wArray)
{
FieldInfo fi = enumeration.GetField(wValue.ToString());
if(null != fi)
{
BrowsableAttribute[] wBrowsableAttributes = fi.GetCustomAttributes(typeof(BrowsableAttribute),true) as BrowsableAttribute[];
if(wBrowsableAttributes.Length > 0)
{
// If the Browsable attribute is false
if(wBrowsableAttributes[0].Browsable == false)
{
// Do not add the enumeration to the list.
continue;
}
}
DescriptionAttribute[] wDescriptions = fi.GetCustomAttributes(typeof(DescriptionAttribute),true) as DescriptionAttribute[];
if(wDescriptions.Length > 0)
{
wFinalArray.Add(wDescriptions[0].Description);
}
else
wFinalArray.Add(wValue);
}
}
return wFinalArray.ToArray();
}
}
3)在你的xaml中添加ResourceDictionary中的一个部分
<ObjectDataProvider MethodName="GetValues" ObjectType="{x:Type l:EnumerationManager}" x:Key="OutputListForMyComboBox">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="l:MyEnumerationTypeEnum" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
4)现在只需将你的组合框的ItemsSource绑定到我们刚刚在资源字典中定义的这个键
<ComboBox Name="comboBox2"
ItemsSource="{Binding Source={StaticResource OutputListForMyComboBox}}" />
如果您使用上面的枚举尝试此代码,您应该在组合框中看到3个项目:
Item 1
Item 2
Item3
希望这有帮助。
编辑: 如果添加LocalizableDescriptionAttribute的实现并使用它,那么我使用的Description属性将是完美的。
答案 2 :(得分:2)
这是一个解决方案:您创建一个包含所有可能性的属性(列表),并将该ComboBox绑定到该属性上。
在XAML中:
<ComboBox
Name="ScopeComboBox"
Width="120"
Height="23"
Margin="12"
ItemsSource="{Binding Path=AccountDetailsProperty}"
DisplayMemberPath="Value"/>
在后面的代码中:
public partial class Window1 : Window
{
public Window1()
{
AccountDetailsProperty = new List<AccountDetail>()
{
new AccountDetail(DetailScope.Business, "Business"),
new AccountDetail(DetailScope.OtherDetail, "Other details"),
new AccountDetail(DetailScope.Private, "Private"),
};
InitializeComponent();
this.DataContext = this;
}
public List<AccountDetail> AccountDetailsProperty { get; set; }
}
答案 3 :(得分:1)
我会为此使用一个值转换器,这将允许您使用转换器直接绑定,您可以更改转换实现以生成枚举的“更好”的人类可读表示,即拆分大写字符。 / p>
有一篇关于这种方法的完整文章here。
public class MyEnumToStringConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value.ToString();
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return (MyEnum) Enum.Parse( typeof ( MyEnum ), value.ToString(), true );
}
}