In this video, I answer the question “How to Bind an Enum to a ComboBox in WPF?”.

When most WPF developers bind an enum to a combobox in WPF, they use the standard ObjectDataProvider approach. This consists of creating an ObjectDataProvider as a resource in tour wpf application. Setting the MethodName and ObjectType properties. Then you have to provide the ObjectDtaProvider MethodParameters which is the type of the enum you want to bind. Finally, you can then bind your ComboBox ItemsSource property to the ObjectDataProvider resources, which will essentially bind your enum to the combobox.

That’s a lot of code, and it sucks really bad. After seeing the “official” (crappy) WPF approach to bind an enum to a ComboBox using an ObjectDataProvider, I will show you my approach.

My approach takes advantage of a custom MarkupExtension that can be used to bind an enum to a ComboBox just by setting the binding on the ItemsSource property. No need for an ObjectDataprovider.

You’ll soon see why my way is the better approach to bind an enum to a combobox in WPF.

Brian Lagunas

View all posts

4 comments

Follow Me

Follow me on Twitter, subscribe to my YouTube channel, and watch me stream live on Twitch.