wpf枚举数据绑定

时间:2011-09-02 15:36:39

标签: c# wpf xaml data-binding enums

我有一个包含枚举的类BatchInfoViewModel:

namespace MyStuff.ViewModel
{
    public class BatchInfoViewModel : ObservableObject
    {
        public enum TimeFrame
        {
            Today,
            Last7days,
            Last30days,
            Last6months,
            Last12months,
            All
        }
    }
}

和一个用户控件'BatchInfoView',它使用BatchInfoViewModel,我试图将此视图中的组合框绑定到模型上的TimeFrame枚举,但我发现的每个资源都显示了我认为的方法I我正在使用,但在运行时我一直收到Type not found例外。

<UserControl x:Class="MyStuff.View.BatchInfoView"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:view="clr-namespace:MyStuff.View"
         xmlns:viewModel="clr-namespace:MyStuff.ViewModel;assembly=MyStuff.ViewModel"
         xmlns:sys="clr-namespace:System;assembly=mscorlib">    
<UserControl.Resources>
    <ObjectDataProvider x:Key="EnumDataProvider"                              
                        MethodName="GetValues"                              
                        ObjectType="{x:Type sys:Enum}">
        <ObjectDataProvider.MethodParameters>

 <!--None of these work at all, I'm lost :( I've tried variations of these: -->
 <!--<viewModel:BatchInfoViewModel></viewModel:BatchInfoViewModel>
 <x:Type TypeName="viewModel:TimeFrame"/>
 <x:Type TypeName="BatchInfoViewModel:TimeFrame"/>-->


        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>

找不到类型并会抛出异常。

1 个答案:

答案 0 :(得分:5)

你有一个嵌套在类中的枚举,将枚举放在任何类之外的命名空间中并使用viewModel:TimeFrame

(我测试了+连接语法,您可以在枚举上使用x:Static,但它似乎不适用于此处)