ThemeableAttribute(Boolean) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的布尔值确定特性是否表示受主题和控件外观影响的类型或成员,初始化 ThemeableAttribute 类的新实例。
public:
ThemeableAttribute(bool themeable);
public ThemeableAttribute (bool themeable);
new System.Web.UI.ThemeableAttribute : bool -> System.Web.UI.ThemeableAttribute
Public Sub New (themeable As Boolean)
参数
- themeable
- Boolean
如果要将 ThemeableAttribute 初始化,以表示受主题影响的类型或成员,则为 true
;否则为 false
。
示例
下面的代码示例演示如何将 ThemeableAttribute 属性应用于 控件的成员。 在此示例中, ThemeableAttribute 应用于数据绑定控件,并 false
传递给 ThemeableAttribute 构造函数,指示成员 DataSourceID
不能应用主题。 (传递给 false
构造函数会导致 ThemeableAttribute 实例等效于 No field.)
namespace Samples.AspNet.CS.Controls {
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
public class SomeDataBoundControl : DataBoundControl
{
// Implementation of a custom data source control.
[Themeable(false) ]
[IDReferenceProperty()]
public override string DataSourceID {
get {
return base.DataSourceID;
}
set {
base.DataSourceID = value;
}
}
}
}
Imports System.Web.UI
Imports System.Web.UI.WebControls
Public Class SomeDataBoundControl
Inherits DataBoundControl
' Implementation of a custom data source control.
<Themeable(False)> _
<IDReferenceProperty()> _
Public Overrides Property DataSourceID() As String
Get
Return MyBase.DataSourceID
End Get
Set
MyBase.DataSourceID = value
End Set
End Property
End Class
注解
true
传递给此构造函数等效于使用 Yes 字段,而 传递 false
等效于使用 No 字段。