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?

link|improve this question
feedback

4 Answers

up vote 19 down vote accepted

Here is the pure XAML solution.

In your resources section, you would use this:

<!-- Make sure this namespace is declared so that it's in scope below -->
.. xmlns:sys="clr-namespace:System;assembly=mscorlib" ..

<ObjectDataProvider MethodName="GetType" 
    ObjectType="{x:Type sys:Type}" x:Key="colorsTypeOdp">
    <ObjectDataProvider.MethodParameters>
        <sys:String>System.Windows.Media.Colors, PresentationCore,
            Version=3.0.0.0, Culture=neutral, 
            PublicKeyToken=31bf3856ad364e35</sys:String>
    </ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
<ObjectDataProvider ObjectInstance="{StaticResource colorsTypeOdp}"  
    MethodName="GetProperties" x:Key="colorPropertiesOdp">
</ObjectDataProvider>

And then the combobox would look like this:

<ComboBox Name="comboBox1" 
    ItemsSource="{Binding Source={StaticResource colorPropertiesOdp}}"
    DisplayMemberPath="Name"
    SelectedValuePath="Name" />
link|improve this answer
This is exactly what I was looking for ;] It works perfectly. Thank you very much for your time and help! – Christopher Feb 21 '09 at 18:54
1  
Go ahead and use your fancy-shmancy declarative programming! See if I care! JK :) – Ronnie Overby Feb 24 '09 at 21:00
@Ronnie Overby: Oh, I definitely get on with my bad self. – casperOne Feb 24 '09 at 21:25
1  
@casperOne - Your solution can be condensed down to one line: <ObjectDataProvider ObjectInstance="{x:Type Colors}" MethodName="GetProperties" x:Key="colorPropertiesOdp" />. This answer is fairly old, so maybe it didn't work at the time. But i tested with a .NET 3.0, 3.5, and 4.0 project and it worked everytime. – CodeNaked Oct 17 '11 at 14:52
feedback

Here is what I have done in a past ASP.net app:

// populate colors drop down (will work with other kinds of list controls)
Type colors = typeof(System.Drawing.Color);
PropertyInfo[] colorInfo = colors.GetProperties(BindingFlags.Public |
    BindingFlags.Static);
foreach ( PropertyInfo info in colorInfo)
{
    ddlColor.Items.Add(info.Name);                
}

// Get the selected color
System.Drawing.Color selectedColor = 
    System.Drawing.Color.FromName(ddlColor.SelectedValue);
link|improve this answer
feedback

Here is a great ItemTemplate to use for a combobox using casperOne's code:

<ComboBox Name="cboColors"
          ItemsSource="{Binding Source={StaticResource colorPropertiesOdp}}"
          SelectedValuePath="Name">
     <ComboBox.ItemTemplate>
        <DataTemplate>
           <StackPanel Orientation="Horizontal" Height="18" Margin="0,0,0,2">
              <Border BorderThickness="1" CornerRadius="2" 
                  BorderBrush="Black" Width="50" VerticalAlignment="Stretch"
                  Background="{Binding Name}"/>
              <TextBlock Text="{Binding Name}" Margin="8,0,0,0"/>
           </StackPanel>
         </DataTemplate>
     </ComboBox.ItemTemplate>
</ComboBox>
link|improve this answer
I agree: nice template – Kell Jun 25 '11 at 18:47
feedback

There is a sample appliation that will be useful for you available to download from MSDN:

ColorPicker Custom Control Sample

This sample shows how to create a custom ColorPicker control and display it in a WPF dialog window.

link|improve this answer
I don't need a full featured color picker. I saw that exanple, but it's not what I was looking for. – Christopher Feb 21 '09 at 18:55
feedback

protected by casperOne May 22 '11 at 20:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.