Control.Location プロパティ
定義
コンテナーの左上隅に対する相対座標として、コントロールの左上隅の座標を取得または設定します。Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
public:
property System::Drawing::Point Location { System::Drawing::Point get(); void set(System::Drawing::Point value); };
public System.Drawing.Point Location { get; set; }
member this.Location : System.Drawing.Point with get, set
Public Property Location As Point
プロパティ値
コントロールの左上隅をコンテナーの左上隅に対して相対的に表す Point。The Point that represents the upper-left corner of the control relative to the upper-left corner of its container.
例
次のコード例では、を作成 GroupBox し、その共通プロパティのいくつかを設定します。The following code example creates a GroupBox and sets some of its common properties. この例では、を作成 TextBox し、そのを Location グループボックス内に設定します。The example creates a TextBox and sets its Location within the group box. 次に、 Text グループボックスのプロパティを設定し、グループボックスをフォームの上部にドッキングします。Next, it sets the Text property of the group box, and docks the group box to the top of the form. 最後に、プロパティをに設定して、グループボックスを無効 Enabled false
にします。これにより、グループボックス内に含まれるすべてのコントロールが無効になります。Lastly, it disables the group box by setting the Enabled property to false
, which causes all controls contained within the group box to be disabled.
// Add a GroupBox to a form and set some of its common properties.
private:
void AddMyGroupBox()
{
// Create a GroupBox and add a TextBox to it.
GroupBox^ groupBox1 = gcnew GroupBox;
TextBox^ textBox1 = gcnew TextBox;
textBox1->Location = Point(15,15);
groupBox1->Controls->Add( textBox1 );
// Set the Text and Dock properties of the GroupBox.
groupBox1->Text = "MyGroupBox";
groupBox1->Dock = DockStyle::Top;
// Disable the GroupBox (which disables all its child controls)
groupBox1->Enabled = false;
// Add the Groupbox to the form.
this->Controls->Add( groupBox1 );
}
// Add a GroupBox to a form and set some of its common properties.
private void AddMyGroupBox()
{
// Create a GroupBox and add a TextBox to it.
GroupBox groupBox1 = new GroupBox();
TextBox textBox1 = new TextBox();
textBox1.Location = new Point(15, 15);
groupBox1.Controls.Add(textBox1);
// Set the Text and Dock properties of the GroupBox.
groupBox1.Text = "MyGroupBox";
groupBox1.Dock = DockStyle.Top;
// Disable the GroupBox (which disables all its child controls)
groupBox1.Enabled = false;
// Add the Groupbox to the form.
this.Controls.Add(groupBox1);
}
' Add a GroupBox to a form and set some of its common properties.
Private Sub AddMyGroupBox()
' Create a GroupBox and add a TextBox to it.
Dim groupBox1 As New GroupBox()
Dim textBox1 As New TextBox()
textBox1.Location = New Point(15, 15)
groupBox1.Controls.Add(textBox1)
' Set the Text and Dock properties of the GroupBox.
groupBox1.Text = "MyGroupBox"
groupBox1.Dock = DockStyle.Top
' Disable the GroupBox (which disables all its child controls)
groupBox1.Enabled = False
' Add the Groupbox to the form.
Me.Controls.Add(groupBox1)
End Sub
注釈
Pointクラスは値型 ( Structure
Visual Basic では、Visual C# では) であるため、 struct
値によって返されます。これは、プロパティにアクセスすると、コントロールの左上点のコピーが返されることを意味します。Because the Point class is a value type (Structure
in Visual Basic, struct
in Visual C#), it is returned by value, meaning accessing the property returns a copy of the upper-left point of the control. そのため、 X Y このプロパティから返されるのプロパティまたはプロパティを調整 Point しても Left 、コントロールの、、、の各 Right Top Bottom プロパティ値には影響しません。So, adjusting the X or Y properties of the Point returned from this property will not affect the Left, Right, Top, or Bottom property values of the control. これらのプロパティを調整するには、各プロパティ値を個別に設定するか、 Location 新しいを使用してプロパティを設定し Point ます。To adjust these properties set each property value individually, or set the Location property with a new Point.
がの場合 Control Form 、プロパティの Location 値はの左上隅を Form 画面座標で表します。If the Control is a Form, the Location property value represents the upper-left corner of the Form in screen coordinates.