Control.Parent 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在網頁控制階層架構中取得伺服器控制項之父控制項的參考。
public:
virtual property System::Web::UI::Control ^ Parent { System::Web::UI::Control ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual System.Web.UI.Control Parent { get; }
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.Bindable(false)]
public virtual System.Web.UI.Control Parent { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Parent : System.Web.UI.Control
[<System.ComponentModel.Browsable(false)>]
[<System.ComponentModel.Bindable(false)>]
member this.Parent : System.Web.UI.Control
Public Overridable ReadOnly Property Parent As Control
屬性值
伺服器控制項父控制項的參考。
- 屬性
範例
下列範例會將頁面上 myControl1
的新 Control 物件設定為方法呼叫中指定的 FindControl 控制項。 如果呼叫傳回控制項,程式碼會使用 Parent 屬性來識別包含 的 myControl1
控制項。 如果父控制項存在,字串 「The parent of the text box is」 會與 ID 父控制項的 屬性串連,並寫入至 Page 。 如果找不到父控制項,則會寫入字串「找不到控制項」。
private void Button1_Click(object sender, EventArgs MyEventArgs)
{
// Find control on page.
Control myControl1 = FindControl("TextBox2");
if(myControl1!=null)
{
// Get control's parent.
Control myControl2 = myControl1.Parent;
Response.Write("Parent of the text box is : " + myControl2.ID);
}
else
{
Response.Write("Control not found");
}
}
Private Sub Button1_Click(sender As Object, MyEventArgs As EventArgs)
' Find control on page.
Dim myControl1 As Control = FindControl("TextBox2")
If (Not myControl1 Is Nothing)
' Get control's parent.
Dim myControl2 As Control = myControl1.Parent
Response.Write("Parent of the text box is : " & myControl2.ID)
Else
Response.Write("Control not found.....")
End If
End Sub
備註
每當要求頁面時,就會建置該頁面上的伺服器控制項階層。 這個屬性可讓您判斷該階層中目前伺服器控制項的父控制項,並對其進行程式設計。