I want to color all \"Unselectable\" Text from combo box. How can i do this? I tried it but i am unable to do this.
My Code is Given Below:
You need to set the foreground property on the ComboBoxItem to the colour you require.
new ComboBoxItem() { Selectable = false, Text="Unselectable", Value=3, Foreground = Brushes.Red},
MSDN page