Telerik RadWindow's look and feel is fully customizable using skins. You can blend with the design of the rest of the site and thus increase its usability and attractiveness.
A skin is set to the RadWindowManager object, using the Skin property. All skins are located in the "~RadControls/Window/Skins" folder.
Each skin contains the following:
- Window.css file with the css classes of the skin.
- Modifiable CoreTemplates.xml file that holds the alert, prompt, confirm, minimize, splash templates for the skin.
- Img folder containing images used in the skin (such as for the alert, minimize popups).
- CssImg folder containing images referenced in the css classes (if any).
 |
There can be only 1 skin set per page. Mixing skins is not recommended in this version. |
Example

| ASP.NET |
Copy Code |
|
<rad:RadWindowManager id="RadWindowManager1" VisibleOnPageLoad="true" Skin = "Golden" runat="server" /> |
| C# |
Copy Code |
|
RadWindowManager1.Skin = "Office2007"; |
| VB.NET |
Copy Code |
|
RadWindowManager1.Skin = "Office2007" |
See Also