vote up 9 vote down star
9

The title pretty much stays it all. Say I have an enum with four values:

public enum CompassHeading
{
    North,
    South,
    East,
    West
}

What XAML would be required to have a ComboBox be populated with these items?

<ComboBox ItemsSource="{Binding WhatGoesHere???}" />

Ideally I wouldn't have to set up C# code for this.

Thanks.

flag

68% accept rate
I just read Eric Burke's recent post about a Swing JComboBox class that does this, and thought "Hey, I swear I saw a SO question about this..." I was close, but you want WPF, not Java/Swing. Anyway, here it is for posterity: stuffthathappens.com/blog/2009/… – JMD Feb 11 at 21:37

5 Answers

vote up 13 vote down check

You can use the ObjectDataProvider to do this:

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

<ComboBox ItemsSource="{Binding Source={StaticResource odp}}" />

I found the solution here:

http://bea.stollnitz.com/blog/?p=28

link|flag
Thanks, this solution seems to work well with TwoWay binding also. Note that the IsSynchronizedWithCurrentItem="true" is a red herring for this question (you might like to remove it for clarity other visitors). – Drew Noakes Feb 12 at 10:35
vote up 3 vote down

Here is a detailed example of how to bind to enums in WPF

Assume you have the following enum

public enum EmployeeType    
{
    Manager,
    Worker
}

You can then bind in the codebehind

typeComboBox.ItemsSource = Enum.GetValues(typeof(EmployeeType));

or use the ObjectDataProvider

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

and now you can bind in the markup

<ComboBox ItemsSource="{Binding Source={StaticResource sysEnum}}" />

Also check out: http://stackoverflow.com/questions/58743/databinding-an-enum-property-to-a-combobox-in-wpf#62032

link|flag
vote up 1 vote down

A third solution:

This is slightly more work up-front, better is easier in the long-run if you're binding to loads of Enums. Use a Converter which takes the enumeration's type as a paramter, and converts it to an array of strings as an output.

In VB.NET:

Public Class EnumToNamesConverter
    Implements IValueConverter

    Public Function Convert(ByVal value As Object, ByVal targetType As System.Type, ByVal parameter As Object, ByVal culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.Convert
        Return [Enum].GetNames(DirectCast(value, Type))
    End Function

    Public Function ConvertBack(ByVal value As Object, ByVal targetType As System.Type, ByVal parameter As Object, ByVal culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.ConvertBack
        Throw New NotImplementedException()
    End Function
End Class

Or in C#:

public sealed class EnumToNamesConverter : IValueConverter
{
  object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)
  {
    return Enum.GetNames(value.GetType());
  }

  object IValueConverter.ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  {
    throw New NotSupportedException()
  }
}

Then in your Application.xaml, add a global resource to access this converter:

<local:EnumToNamesConverter x:Key="EnumToNamesConverter" />

Finally use the converter in any XAML pages where you need the values of any Enum...

<ComboBox ItemsSource="{Binding
                        Source={x:Type local:CompassHeading},
                        Converter={StaticResource EnumToNamesConverter}}" />
link|flag
Hi maranite2, I like the look of this solution but I couldn't get it to work with TwoWay binding. The binding works from control to data (when I save) but it doesn't work from data to control (the combo box is initially blank where there should be a value selected). – Drew Noakes Feb 12 at 10:48
vote up 1 vote down

For a step-by-step walkthrough of the alternatives and derivations of technique, try this web page:

The Missing .NET #7: Displaying Enums in WPF

This article demonstrates a method of overriding the presentation of certain values as well. A good read with plenty of code samples.

link|flag
vote up 2 vote down

I think using an ObjectDataProvider to do that is really tedious... I have a more concise suggestion (yes I know, it's a bit late...), using a markup extension :

<ComboBox ItemsSource="{local:EnumValues local:EmployeeType}"/>

Here is the code for the markup extension :

[MarkupExtensionReturnType(typeof(object[]))]
public class EnumValuesExtension : MarkupExtension
{
    public EnumValuesExtension()
    {
    }

    public EnumValuesExtension(Type enumType)
    {
        this.EnumType = enumType;
    }

    [ConstructorArgument("enumType")]
    public Type EnumType { get; set; }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        if (this.EnumType == null)
            throw new ArgumentException("The enum type is not set");
        return Enum.GetValues(this.EnumType);
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.