无法将枚举绑定到组合框 wpf mvvm

Cant bind enum to combobox wpf mvvm

我已经阅读了很多关于将枚举绑定到组合框的方法。所以现在在 .Net 4.5 中应该很容易。但是我的代码不起作用。 不太明白为什么。

xaml:

<Window x:Class="SmartTrader.Windows.SyncOfflineDataWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="SyncOfflineDataWindow" Height="300" Width="300">
<Grid>
    <StackPanel>
        <ComboBox ItemsSource="{Binding StrategyTypes}" SelectedItem="{Binding StrategyType}" />
        <Button Width="150" Margin="5" Padding="5" Click="Button_Click">Save</Button>
    </StackPanel>
</Grid>

xaml.cs 后端

namespace SmartTrader.Windows
{
    /// <summary>
    /// Interaction logic for SyncOfflineDataWindow.xaml
    /// </summary>
    public partial class SyncOfflineDataWindow : Window
    {
        public SyncOfflineDataWindow(IPosition position, ContractType type)
        {
            DataContext = new ObservablePosition(position);
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {

        }
    }
}

查看模型:

namespace SmartTrader.Entity
{
    public class ObservablePosition : NotifyPropertyChanged, IPosition
    {
        public IEnumerable<StrategyType> StrategyTypes =
            Enum.GetValues(typeof (StrategyType)).Cast<StrategyType>();

        public ObservablePosition(IPosition position)
        {
           Strategy = position.Strategy;
        }


        private StrategyType _strategyType = StrategyType.None;
        public StrategyType Strategy
        {
            get { return _strategyType; }
            set
            {
                _strategyType = value;
                OnPropertyChanged();
            }
        }
    }
}

StrategyType 是枚举。 我得到的只是空的下拉列表

您正在尝试绑定到私有变量,相反,您的枚举应该公开为 Property

public IEnumerable<StrategyTypes> StrategyTypes
{
    get
    {
        return Enum.GetValues(typeof(StrategyType)).Cast<StrategyType>();
    }
}

另外,Discosultan 已经为您解决了另一个问题

将任何枚举数据绑定到 wpf 中的组合框的最简单方法 XAML: 在 window 或用户控制资源

中添加数据提供者

xmlns:pro="clr-namespace:TestProject">

<UserControl.Resources>
    <ObjectDataProvider x:Key="getDataFromEnum" MethodName="GetValues" ObjectType="{x:Type System:Enum}">
        <ObjectDataProvider.MethodParameters>
            <x:Type TypeName="pro:YourEnumName"/>
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</UserControl.Resources>
<!--ComboBox xaml:-->
<ComboBox ItemsSource="{Binding Source={StaticResource getDataFromEnum}}"/>

我在 youtube 上找到了解决方案。检查下面的 link:

如何在 WPF 中将枚举绑定到组合框:https://youtu.be/Bp5LFXjwtQ0

此解决方案创建了一个新的 class 派生自 MarkupExtension class 并使用此 class 作为 XAML 代码中的源。

EnumBindingSourceExtention.cs 文件:

namespace YourProject.Helper
{
public class EnumBindingSourceExtention : MarkupExtension
    {
        public Type EnumType { get; private set; }

        public EnumBindingSourceExtention(Type enumType)
        {
            if (enumType == null || !enumType.IsEnum)
            {
                throw new Exception("EnumType is null or not EnumType");
            }
            this.EnumType = enumType;
        }

        public override object ProvideValue(IServiceProvider serviceProvider)
        {
            return Enum.GetValues(EnumType);
        }
    }
}

View.Xaml 文件:

<Window
    xmlns:helper="clr-namespace:YourProject.Helper"/>
<ComboBox
    ItemsSource="{Binding Source={helper:EnumBindingSourceExtention {x:Type local:TheEnumClass}}}" />

local:TheEnumClass:TheEumClass 应该位于您指定命名空间的位置(在本例中,它在本地)