Appearance in WPF Color Picker Palette
5 May 20211 minute to read
This section explains different UI customization, styling, theming options available in ColorPickerPalette control.
Change flow direction
We can change the flow direction of the ColorPickerPalette
layout from right to left by setting the FlowDirection
property value as RightToLeft
. The Default value of FlowDirection
property is LeftToRight
.
<syncfusion:ColorPickerPalette FlowDirection="RightToLeft"
Name="colorPickerPalette"
Width="60"
Height="40">
</syncfusion:ColorPickerPalette>
ColorPickerPalette colorPickerPalette = new ColorPickerPalette();
colorPickerPalette.FlowDirection = FlowDirection.RightToLeft;
colorPickerPalette.Width = 60;
colorPickerPalette.Height = 40;
Theme
ColorPickerPalette supports various built-in themes. Refer to the below links to apply themes for the ColorPickerPalette,