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.
You can use the ObjectDataProvider to do this:
I found the solution here:
http://bea.stollnitz.com/blog/?p=28