How can I apply an inbuilt skin to the FontListBox?
FontListBox has different built-in skins that can be applied. They are as follows:
- Default
- Office2007Blue
- Office2007Silver
- Office2007Black
- Blend
- Office2003
The following code shows how these skins can be applied dynamically to the FontListBox.
[C#]
//Appllying Office2007Blue
Skin SkinStorage.SetVisualStyle(fontlistbox, "Office2007Blue");
//Applying Blend Skin
SkinStorage.SetVisualStyle(fontlistbox, "Blend");