6

我有这样的数据绑定设置:

ItemsSource="{Binding Source={my:Enumeration {x:Type credit:OccupationCategory}}}"
                      DisplayMemberPath="Description"
                      SelectedValue="{Binding EmplType}"
                      SelectedValuePath="Value"/>

它工作得非常好。对较大的软件设计进行更改我不能再拥有任何生成 INotifyPropertyChanged 事件的东西,因此这种类型的数据绑定不起作用。相反,我手动设置 selectedIndex 并从如下代码构建选项:

ItemsSource="{Binding Source={StaticResource ResidenceOwnershipType}}"/>

其中引用

<UserControl.Resources>
    <ObjectDataProvider x:Key="ResidenceOwnershipType" MethodName="GetValues" ObjectType="{x:Type System:Enum}" >
        <ObjectDataProvider.MethodParameters>
            <x:Type TypeName="credit:ResidenceOwnershipType" />
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</UserControl.Resources>

就列表选项的构建和我所有数据的链接而言,这是有效的,但我无法让组合框在枚举中显示描述标签而不是实际文本。

我试过这样的事情:

DisplayMemberPath="Description"

但那是不正确的。我该怎么做呢?

编辑:

我的枚举:

[DataContract]
public enum ResidenceOwnershipType
{
    [Description("")]
    None = 0,
    [Description("Owns Home Outright")]
    OwnsHomeOutright = 1,
    [Description("Buying Home")]
    BuyingHome = 2,
    [Description("Renting/Leasing")] //Weird order here reflects RouteOne website
    RentingLeasing = 4,
    [Description("Living w/Relatives")]
    LivingWithRelatives = 3,
    [Description("Owns/Buying Mobile Home")]
    MobileHome = 5,
    [Description("Unknown")]
    Unknown = 6
}
4

2 回答 2

15

如果您保留它ItemsSource,您将必须定义一个自定义ItemTemplate,因为DisplayMemberPath它只是您无法检索描述的路径。

至于模板应该是什么样子:您可以将 a 绑定TextBlock到枚举值(当前DataContext)并通过管道将其通过ValueConverterusing Binding.Converter。该代码只是检索Description(GetTypeGetCustomAttributes)的一些反映

替代方法是立即返回可用集合的自定义方法(并在 中使用ObjectDataProvider)或执行相同操作的自定义标记扩展。


如果我们谈论的是方法示例ComponentModel.DescriptionAttribute

public static class EnumUtility
{
    // Might want to return a named type, this is a lazy example (which does work though)
    public static object[] GetValuesAndDescriptions(Type enumType)
    {
        var values = Enum.GetValues(enumType).Cast<object>();
        var valuesAndDescriptions = from value in values
                                    select new
                                        {
                                            Value = value,
                                            Description = value.GetType()
                                                .GetMember(value.ToString())[0]
                                                .GetCustomAttributes(true)
                                                .OfType<DescriptionAttribute>()
                                                .First()
                                                .Description
                                        };
        return valuesAndDescriptions.ToArray();
    }
}
<ObjectDataProvider x:Key="Data" MethodName="GetValuesAndDescriptions"
                    ObjectType="local:EnumUtility">
    <ObjectDataProvider.MethodParameters>
        <x:TypeExtension TypeName="local:TestEnum" />
    </ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
<ListBox ItemsSource="{Binding Source={StaticResource Data}}"
         DisplayMemberPath="Description"
         SelectedValuePath="Value"/>
于 2012-07-11T19:47:30.350 回答
2

这个答案是我为自己的应用程序实现的 HB 答案的补充:

检查是否添加了描述属性:

Description = (value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(true).OfType<DescriptionAttribute>().Count() > 0 ? 
                                                value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(true).OfType<DescriptionAttribute>().First().Description 
                                                : value)

并设置以下属性以确保使用正确的 ID:SelectedValuePath="Value"

于 2013-03-14T09:07:07.537 回答