If I bind a WinForms ComboBox to an enum type's values, i.e.

combo1.DropDownStyle = ComboBoxStyle.DropDownList;
combo1.DataSource = Enum.GetValues(typeof(myEnumType));

Who knows how I could achieve the same result, while, in addition to entries matching each enum value, I can also have a blank entry representing no selection?

I cannot simply add a special value to the enum type because this must be flexible to deal with any enum type.

I'd appreciate your help.

Edit: I should make clear that I want to bind the actual enum values and not their names. If the actual enum values are bound, the ComboBox takes care of calling their ToString() to get the text to display.

link|improve this question

Folks, this is WinForms, not ASP.NET. You cannot add items to a ComboBox in WinForms once the DataSource has been set. – Andrew Hare Apr 30 '09 at 14:08
feedback

3 Answers

Not sure if you guys have tried all of the code that you've been posting or not, but you can't add items do a databound ComboBox. This is winforms, not WPF, so there is no "DataBind" function.

You could do this:

public static string[] GetEnumValues<T>(bool includeBlank) 
{
    List<string> values = new List<string>((Enum.GetValues(typeof(T)) as T[]).Select(t => t.ToString()));

    if (includeBlank)
    {
        values.Insert(0, string.Empty);
    }

    return values.ToArray();
}

Then

combo.DataSource = GetEnumValues<myEnumType>(true);
link|improve this answer
feedback

You could try something like this:

(Edited to reflect Brad_Z's excellent suggestion)

static IEnumerable<String> getValues<T>(String initialValue)
{
    yield return initialValue;

    foreach (T t in Enum.GetValues(typeof(T)))
    	yield return t.ToString();
}

static IEnumerable<String> getValues<T>()
{
    return getValues<T>(String.Empty);
}

This will allow you to bind to the results of this function like this:

combo1.DataSource = getValues<myEnumType>().ToArray();

or like this, if you wish to specify a different value for the initial item:

combo1.DataSource = getValues<myEnumType>("Select").ToArray();
link|improve this answer
2  
Good answer. I'd add a parameter to the getValues function allowing the text of the blank entry to be specified. So you could say: getValues<catEnumType>("select a cat").ToArray(); – Brad_Z Apr 30 '09 at 14:20
Excellent suggestion! I have edited to include it. :) – Andrew Hare Apr 30 '09 at 14:24
Thanks for your post - That would work handsomely, except it is the actual enum values that I want and not a string representation of their names :-) – f100 Apr 30 '09 at 15:50
feedback
up vote 0 down vote accepted

(Please see my edit to the question where I clarified that I don't want to bind to a collection of strings).

After more fiddling, the following monstrosity seems to work. combo1.SelectedItem is of type object and will either be a DBNull or a (boxed?) enum value. Is this code advisable?

combo1.DataSource = (new object[] { DBNull.Value }
                        .Concat(Enum.GetValues(refToAnEnumType)
                            .Cast<object>())).ToList()

Edit: I see Adam and Andrew's methods could easily be adapted to do the same thing. Thanks guys!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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