Many properties in standard WPF elements support a small discrete set of values that can be specified as strings when the elements are created in XAML. For example, StackPanel's Orientation property supports "Horizontal" and "Vertical" as discrete properties. IntelliSense aids you by giving you these two options after you open the quotes for the Orientation property. I know a value converter is involved in converting these to enum values of type System.Windows.Controls.Orientation enum.
How do you do this for a custom dependency property for your custom control? I want it to work just as it does for standard element dependency properties with the IntelliSense help and all.
Thanks