DataBoundControlAdapter.Control 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取與這個控制項配置器關聯的 DataBoundControl 物件的強型別參考。
protected:
property System::Web::UI::WebControls::DataBoundControl ^ Control { System::Web::UI::WebControls::DataBoundControl ^ get(); };
protected System.Web.UI.WebControls.DataBoundControl Control { get; }
member this.Control : System.Web.UI.WebControls.DataBoundControl
Protected ReadOnly Property Control As DataBoundControl
屬性值
DataBoundControl 所附加的 DataBoundControlAdapter。
範例
下列程式碼範例示範如何覆寫 Control 衍生自 類別之 DataBoundControlAdapter 配接器中的 屬性。 它會傳回控制項 MyDataBound
的強型別參考。
// Returns a strongly-typed reference to the MyDataBound control.
public new MyDataBound Control
{
get
{
return (MyDataBound)base.Control;
}
}
' Returns a strongly-typed reference to the MyDataBound control.
Public Shadows ReadOnly Property Control() As MyDataBound
Get
Return CType(MyBase.Control, MyDataBound)
End Get
End Property
備註
DataBoundControlAdapter當物件附加至 DataBoundControl 控制項時,.NET Framework會呼叫特定配接器成員,而不是控制項成員。
給繼承者的注意事項
當您繼承自 DataBoundControlAdapter 類別時,應該至少實 Control
作 屬性以傳回控制項的強型別實例,如 Example 區段所示