PowerTools SPREAD for Windows Forms 8.0J
Parent プロパティ (ElementControl)


コントロールの親を取得または設定します。
構文
'Declaration
 
Public Overridable Shadows Property Parent As Control
'使用法
 
Dim instance As ElementControl
Dim value As Control
 
instance.Parent = value
 
value = instance.Parent
public virtual new Control Parent {get; set;}

プロパティ値

このコントロールの親を含むControlオブジェクト
解説

このプロパティが使用できるのは実行時のみです。

詳細については、Microsoft .NET FrameworkリファレンスのParentプロパティを参照してください。

// Change the parent of the controls
private void button1_Click(object sender, System.EventArgs e)
{
    control.Parent = groupBox1;
    control2.Parent = this; 
}
'Change the parent of the controls
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    control.Parent = Me
    control2.Parent = GroupBox1
End Sub
参照

ElementControl クラス
ElementControl メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.