IDReferencePropertyAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 IDReferencePropertyAttribute 类的新实例。
重载
IDReferencePropertyAttribute() |
初始化 IDReferencePropertyAttribute 类的新实例。 |
IDReferencePropertyAttribute(Type) |
使用指定的类型初始化 IDReferencePropertyAttribute 类的新实例。 |
IDReferencePropertyAttribute()
初始化 IDReferencePropertyAttribute 类的新实例。
public:
IDReferencePropertyAttribute();
public IDReferencePropertyAttribute ();
Public Sub New ()
示例
下面的代码示例演示如何将 IDReferencePropertyAttribute 属性应用于计算结果为字符串的属性。 在此示例中, DataSourceID
成员在运行时标识数据源控件。 通过使用无参数构造函数,属性ReferencedControlType设置为默认值。 Control
// This class implements a custom data source control.
public class SomeDataBoundControl : DataBoundControl
{
[ IDReferencePropertyAttribute() ]
new public string DataSourceID {
get {
return base.DataSourceID;
}
set {
base.DataSourceID = value;
}
}
}
' This class implements a custom data source control.
Public Class SomeDataBoundControl
Inherits DataBoundControl
<IDReferencePropertyAttribute()> _
Public Shadows Property DataSourceID() As String
Get
Return MyBase.DataSourceID
End Get
Set
MyBase.DataSourceID = value
End Set
End Property
End Class
注解
调用此构造函数时,属性 ReferencedControlType 将设置为 Control默认值,即其默认值。
另请参阅
适用于
IDReferencePropertyAttribute(Type)
使用指定的类型初始化 IDReferencePropertyAttribute 类的新实例。
public:
IDReferencePropertyAttribute(Type ^ referencedControlType);
public IDReferencePropertyAttribute (Type referencedControlType);
new System.Web.UI.IDReferencePropertyAttribute : Type -> System.Web.UI.IDReferencePropertyAttribute
Public Sub New (referencedControlType As Type)
参数
- referencedControlType
- Type
一个 Type,指定由 IDReferencePropertyAttribute 应用到的属性所表示的控件类型。
示例
下面的代码示例演示如何将 IDReferencePropertyAttribute 属性应用于计算结果为字符串的属性。 在此示例中, DataSourceID
成员标识数据源控件,因此指定类型 DataSourceControl 。
// This class implements a custom data source control.
public class SomeDataBoundControl : DataBoundControl
{
[ IDReferencePropertyAttribute(typeof(DataSourceControl)) ]
new public string DataSourceID {
get {
return base.DataSourceID;
}
set {
base.DataSourceID = value;
}
}
}
' This class implements a custom data source control.
Public Class SomeDataBoundControl
Inherits DataBoundControl
<IDReferencePropertyAttribute(GetType(DataSourceControl))> _
Public Shadows Property DataSourceID() As String
Get
Return MyBase.DataSourceID
End Get
Set
MyBase.DataSourceID = value
End Set
End Property
End Class