How can I get list of all colors I can pick in Visual Studio Designer (which is System.Windows.Media.Colors, but that isn't a collection) and put them into my own ComboBox using WPF and XAML markup?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here is the pure XAML solution. In your resources section, you would use this:
Or, as CodeNaked points out, it can be reduced to one tag:
And then the combobox would look like this:
|
|||||
|
|
Here is what I have done in a past ASP.net app:
|
||||
|
|
|
Here is a great ItemTemplate to use for a combobox using casperOne's code:
|
||||
|
|