You can customize the appearance of a RadColorSelector by choosing which of
the parts to be visible.
You can set the NoColorVisibilityproperty to Visibility.Visibleto view the NoColorField,
otherwise you should set it to false:
CopyXAML
<telerik:RadColorSelector NoColorVisibility="Visible" />
CopyC#
RadColorSelector selector = new RadColorSelector();
selector.NoColorVisibility = Visibility.Visible;
CopyVB.NET
Dim selector As New RadColorSelector()
selector.NoColorVisibility = Visibility.Visible
You can use StandardPaletteVizibility and
HeaderPaletteVizibility in order to set the visibility of the
corresponding palettes:
You can set different text for
StandardPalette header text , MainPalette
header text and NoColorText.