How can I applied in-built skin to the FontListComboBox ?
Different types of built-in skins are available with the font list combo box. They are listed below:
- Default
- Office2007Blue
- Office2007Silver
- Office2007Black
- Blend
- Office2003
The following code shows how the skins can be applied dynamically to the FontListComboBox.
[C#]
//Creating object for font list combo box
FontListComboBox fontlistcombobox = new FontListComboBox();
//Code for applying Office2007Blue
SkinStorage.SetVisualStyle( fontlistcombobox, "Office2007Blue");
//Code for applying Blend
SkinStorage.SetVisualStyle( fontlistcombobox, "Blend");