小编典典

如何在WPF中将枚举绑定到组合框控件?

c#

我试图找到一个简单的示例,其中枚举按原样显示。我看到的所有示例都试图添加漂亮的显示字符串,但我不希望这种复杂性。

基本上,我有一个类来保存我绑定的所有属性,方法是先将DataContext设置为此类,然后在xaml文件中指定如下所示的绑定:

<ComboBox ItemsSource="{Binding Path=EffectStyle}"/>

但这不会在ComboBoxas项目中显示枚举值。


阅读 258

收藏
2020-05-19

共1个答案

小编典典

您可以通过将以下代码放在Window Loaded事件处理程序中来从代码中完成操作,例如:

yourComboBox.ItemsSource = Enum.GetValues(typeof(EffectStyle)).Cast<EffectStyle>();

如果需要在XAML中绑定它,则需要使用它ObjectDataProvider来创建可用作绑定源的对象:

<Window x:Class="YourNamespace.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:System="clr-namespace:System;assembly=mscorlib"
        xmlns:StyleAlias="clr-namespace:Motion.VideoEffects">
    <Window.Resources>
        <ObjectDataProvider x:Key="dataFromEnum" MethodName="GetValues"
                            ObjectType="{x:Type System:Enum}">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="StyleAlias:EffectStyle"/>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
    </Window.Resources>
    <Grid>
        <ComboBox ItemsSource="{Binding Source={StaticResource dataFromEnum}}"
                  SelectedItem="{Binding Path=CurrentEffectStyle}" />
    </Grid>
</Window>

在下一个代码上引起注意:

xmlns:System="clr-namespace:System;assembly=mscorlib"
xmlns:StyleAlias="clr-namespace:Motion.VideoEffects"

指导如何映射可在MSDN上阅读的名称空间和程序集。

2020-05-19