Quote Originally Posted by fafalone View Post
It's a preset.

<DropDownColorPicker CommandName="cmdDropDownColorPickerStandardColors" ColorTemplate="StandardColors"/>

the command it's referring to in CommandName is just the entry that defines the ID#, caption, and image:
Code:
    <Command Name="cmdDropDownColorPickerStandardColors" Symbol="IDC_COLORSTD" Id="2003">
      <Command.LabelTitle>
        <String Id="2003">Standard Colors</String>
      </Command.LabelTitle>
      <Command.LargeImages>
        <Image Id="203">Res/Colors32.bmp</Image>
      </Command.LargeImages>
    </Command>
Thank you, fafalone.