ControlSkinDelegate 委托

定义

表示一种方法,该方法可将正确的控件外观应用于指定控件。

public delegate System::Web::UI::Control ^ ControlSkinDelegate(Control ^ control);
public delegate System.Web.UI.Control ControlSkinDelegate(Control control);
type ControlSkinDelegate = delegate of Control -> Control
Public Delegate Function ControlSkinDelegate(control As Control) As Control 

参数

control
Control

要向其应用主题外观的 Control

返回值

传递给方法并应用了控件外观的 Control

注解

页面和控件开发人员不直接使用 ControlSkinDelegateControlSkinPageTheme 类。 ASP.NET 页面框架在内部使用这些类,将 ASP.NET 主题和控件外观文件中定义的服务器端属性和级联样式表定义应用于特定类型的控件。

委托 ControlSkinDelegateApplySkin 类的 ControlSkin 方法相关联。 类 ControlSkin 表示 ASP.NET 控件外观,它是由 对象表示的 ASP.NET 主题的组件 PageTheme 。 有关 ASP.NET 主题的详细信息,请参阅 ASP.NET 主题和皮肤

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于

另请参阅