WPF枚举绑定

此示例演示如何绑定到枚举。 遗憾的是,没有直接方法可以将枚举用作数据绑定源。 但是,Enum.GetValues(Type) 方法可返回值的集合。 这些值可以包装在 ObjectDataProvider 中并用作数据源。

ObjectDataProvider 类型提供了一种在 XAML 中创建对象并将其用作数据源的便捷方式。使用 ObjectDataProvider  类型包装枚举类型本身提供的枚举值数组。

        <ObjectDataProvider x:Key="DirectionEnumDataSource" ObjectType="{x:Type sys:Enum}" MethodName="GetValues">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="local:DirectionType"></x:Type>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>

在此示例中,ObjectDataProvider 使用三个属性来检索枚举:

属性描述
ObjectType数据提供程序要返回的对象类型。 在本示例中为 System.Enum。 sys: XAML 命名空间映射到 System
MethodName要在 System.Enum 类型上运行的方法的名称。 在本示例中为 Enum.GetValues
MethodParameters要提供给 MethodName 方法的值的集合。 在此示例中,该方法采用枚举的 System.Type

实际上,XAML 正在分解方法调用、方法名称、参数和返回类型。 这里配置的ObjectDataProvider等效于一下代码:

var DirectionEnumDataSource = System.Enum.GetValues(typeof(EnumBinding.DirectionType));

引用ObjectDataProvider资源:

        <ListBox ItemsSource="{Binding Source={StaticResource DirectionEnumDataSource}}" SelectedIndex="0"/>
        <ComboBox ItemsSource="{Binding Source={StaticResource DirectionEnumDataSource}}" SelectedIndex="0"/>

或通过代码的方式:

        <ListBox x:Name="MyListBox"></ListBox>
        <ComboBox x:Name="MyComboBox"></ComboBox>
        MyListBox.ItemsSource = System.Enum.GetValues(typeof(DirectionType));
        MyComboBox.ItemsSource = System.Enum.GetValues(typeof(DirectionType));

完整测试代码:

MainWindow.xaml

<Window x:Class="EnumBinding.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:local="clr-namespace:EnumBinding"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Window.Resources>
        <ObjectDataProvider x:Key="DirectionEnumDataSource" ObjectType="{x:Type sys:Enum}" MethodName="GetValues">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="local:DirectionType"></x:Type>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
    </Window.Resources>
    <StackPanel>
        <ListBox ItemsSource="{Binding Source={StaticResource DirectionEnumDataSource}}" SelectedIndex="0"/>
        <ComboBox ItemsSource="{Binding Source={StaticResource DirectionEnumDataSource}}" SelectedIndex="0"/>

        <ListBox x:Name="MyListBox"></ListBox>
        <ComboBox x:Name="MyComboBox"></ComboBox>
    </StackPanel>
</Window>

MainWindow.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace EnumBinding;


public enum DirectionType : int
{
    Buy = 0,
    Sell = 1,
}


public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

        MyListBox.ItemsSource = System.Enum.GetValues(typeof(DirectionType));
        MyComboBox.ItemsSource = System.Enum.GetValues(typeof(DirectionType));
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值