I'd like to use the RadColorPicker for a RadRibbon. The
button itself should appear as a large
dropdown button in the ribbon.
I can't seem to get the color picer to appear as a large
dropdownbutton. I tried the following two approaches which doesn't succeed.
How do I get the colorpicker to appear as a RadRibbonDropDownButton
with the property Size="Large"?
button itself should appear as a large
dropdown button in the ribbon.
I can't seem to get the color picer to appear as a large
dropdownbutton. I tried the following two approaches which doesn't succeed.
How do I get the colorpicker to appear as a RadRibbonDropDownButton
with the property Size="Large"?
<
telerik:RadRibbonGroup
Header
=
"Test"
>
<!-- Combine RadRibbonDropDown and RadColorPicker? -->
<
telerik:RadRibbonDropDownButton
LargeImage
=
"/Images/Icons/32/CellBoxBorder.png"
Size
=
"Large"
Text
=
"Color Picker"
>
<
telerik:RadRibbonDropDownButton.DropDownContent
>
<
telerik:RadColorPicker
HeaderPalette
=
"Office"
AutomaticColor
=
"White"
/>
</
telerik:RadRibbonDropDownButton.DropDownContent
>
</
telerik:RadRibbonDropDownButton
>
<!-- Or use RadColorPicker directly? -->
<
telerik:RadColorPicker
HeaderPalette
=
"Office"
AutomaticColor
=
"White"
/>
</
telerik:RadRibbonGroup
>