WPF ComboBox Binding Enum

Posted 德克斯特

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF ComboBox Binding Enum相关的知识,希望对你有一定的参考价值。

什么都不说,先看代码

枚举:

namespace WpfAppTest
{
    public enum Week
    {
        Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    }
}

页面:

<Window x:Class="WpfAppTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        xmlns:local="clr-namespace:WpfAppTest"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.Resources>
            <ObjectDataProvider x:Key="NameWeek" MethodName="GetNames" ObjectType="{x:Type sys:Enum}">
                <ObjectDataProvider.MethodParameters>
                    <x:Type TypeName="local:Week"/>
                </ObjectDataProvider.MethodParameters>
            </ObjectDataProvider>
            <ObjectDataProvider x:Key="ValueWeek" MethodName="GetValues" ObjectType="{x:Type sys:Enum}">
                <ObjectDataProvider.MethodParameters>
                    <x:Type TypeName="local:Week"/>
                </ObjectDataProvider.MethodParameters>
            </ObjectDataProvider>
        </Grid.Resources>
        <ComboBox SelectedValue="{Binding SelectedWeek}" ItemsSource="{Binding Source={StaticResource NameWeek}}" HorizontalAlignment="Left" Height="50" Margin="38,40,0,0" VerticalAlignment="Top" Width="150"/>
        <ComboBox SelectedValue="{Binding SelectedWeek}" ItemsSource="{Binding Source={StaticResource ValueWeek}}" HorizontalAlignment="Left" Height="50" Margin="288,40,0,0" VerticalAlignment="Top" Width="150"/>
    </Grid>
</Window>

后台:

using System.Windows;

namespace WpfAppTest
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            DataContext = this;
        }

        public Week SelectedWeek
        {
            get { return (Week)GetValue(SelectedWeekProperty); }
            set { SetValue(SelectedWeekProperty, value); }
        }
        public static readonly DependencyProperty SelectedWeekProperty =
            DependencyProperty.Register("SelectedWeek", typeof(Week), typeof(MainWindow), new PropertyMetadata(default(Week)));
    }
}

 

之前看网上的例子都是用GetNames反射的,但绑了SelectedValue却只能从界面到后台,后来看了Enum的代码才明白要用GetValues

 

System.Enum:

public static string[] GetNames(Type enumType);
public static Array GetValues(Type enumType);

  

以上是关于WPF ComboBox Binding Enum的主要内容,如果未能解决你的问题,请参考以下文章

WPF Combobox数据绑定Binding

Enum Binding ItemsSource In WPF

wpf 当DataGrid列模版是ComboBox时,显示信息

将 UWP ComboBox ItemsSource 绑定到 Enum

2021-08-13 WPF控件专题 ComboBox 控件详解

wpf combobox 页面上怎么绑定值