Skins customize the graphical appearance of individual controls (such as Button or Label) without affecting their functionality. Control skin settings are similar
to a control's markup but they contain only the properties specific to that theme. Skin files (.skin) could be created in the theme
folder, and skins of different controls could either be in different files or in one file.

Figure 1
Below is a sample of a skin file that applies the SitefinityBlue control skin to the RadMenu control.
| RadMenu.skin |
Copy Code |
|
<%@ Register TagPrefix="radM" Namespace="Telerik.WebControls" Assembly="RadMenu.Net2" %>
<radM:RadMenu
runat="server"
Skin="SitefinityBlue">
</radM:RadMenu>
|
Having this .skin file in a theme will make RadMenu controls use SitefinityBlue skin for all pages in the
project that use this theme, unless specified otherwise in the RadMenu control properties.
See Also