问题描述
我有一个类:
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:
Lastly, I have a .xaml file:
<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>
我希望做两件事情:
I would like to do two things:
- 我希望将数据绑定
DetailsScope
枚举值的组合框的值。我不希望
绑定枚举值直接因为最后枚举值将是OtherDetail
而不是其他细节
(添加一个空格字符和小字母D)。 - 我要的数据选择的值在组合框中绑定到指定的
在AccountDetail
对象的实例。
- I wish to data bind
DetailsScope
enum values to the combo box values. I don't wish tobind enum values directly because the last enum value would beOtherDetail
instead ofOther detail
(added a space character and small letter 'd'). - I wish to data bind the selected value in the combo box to the one specified in theinstance of the
AccountDetail
object.
你能帮助我吗?谢谢。
Could you help me out? Thanks.
更新:我发现这个职位http://blogs.msdn.com/b/wpfsdk/archive/2007/02/22/displaying-enum-values-using-data-binding.aspx.我需要类似的东西。
Update: I found this post http://blogs.msdn.com/b/wpfsdk/archive/2007/02/22/displaying-enum-values-using-data-binding.aspx. I need something similar.
推荐答案
一个pretty简单的方法来做到这一点是使用的ObjectDataProvider
A pretty easy way to do this is to use an ObjectDataProvider
<ObjectDataProvider MethodName="GetValues"
ObjectType="{x:Type sys:Enum}"
x:Key="DetailScopeDataProvider">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="local:DetailScope" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
使用的ObjectDataProvider的作为的ItemsSource组合框,绑定的SelectedItem的财产范围,并应用转换器每ComboBoxItem
Use the ObjectDataProvider as the ItemsSource for the ComboBox, bind SelectedItem to the Scope property and apply a converter for the display of each 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题。我用的是最先进的版本,但你也许可以用一个simplier之一。 OtherDetail +正则表达式=其他详细信息。制作返回值更低,然后返回与第一个字符大写的字符串应该给您预期的结果。
And in the converter you can use Regex for CamelCase string splitter found in this question. I used the most advanced version but you can probably use a simplier one. OtherDetail + the regex = Other Detail. Making return value lower and then return a string with first Character UpperCase should give you expected result
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;
}
}
这篇关于WPF数据绑定:如何将数据绑定使用XAML枚举组合框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!