ControlSkin Class
Represents a control skin, which is a means to define stylistic properties that are applied to an ASP.NET Web server control.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | ControlSkin(Type^, ControlSkinDelegate^) | This API supports the product infrastructure and is not intended to be used directly from your code. Creates a new instance of the ControlSkin class using the passed Control type and delegate. |
| Name | Description | |
|---|---|---|
![]() | ControlType | This API supports the product infrastructure and is not intended to be used directly from your code. Gets the Type of the control that the ControlSkin object is associated with. |
| Name | Description | |
|---|---|---|
![]() | ApplySkin(Control^) | This API supports the product infrastructure and is not intended to be used directly from your code. Applies the skin to the Control control contained by the ControlSkin object. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
Page and control developers do not use the ControlSkinDelegate, ControlSkin, or PageTheme classes directly. These classes are used internally by the ASP.NET page framework to apply server-side properties and cascading style sheet definitions that are defined in ASP.NET themes and control skin files to specific types of controls.
ControlSkin objects represent a named skin or default skin of a Control control at run time and design time. ASP.NET builds PageTheme, ControlSkin and ControlSkinDelegate objects to apply the style elements defined in themes and control skin files to ASP.NET Web pages and controls.
For more information about themes and control skins, see ASP.NET Themes and Skins.
The following code example demonstrates how control skins are specified for controls in a declarative ASP.NET page. The example shows three ASP.NET server controls found in the same page, two that use the same named skin and one that uses a different skin.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


