Control.Left 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컨트롤의 왼쪽 가장자리와 해당 컨테이너 클라이언트 영역의 왼쪽 가장자리 사이의 거리(픽셀)를 가져오거나 설정합니다.
public:
property int Left { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int Left { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Left : int with get, set
Public Property Left As Integer
속성 값
컨트롤의 왼쪽 가장자리와 해당 컨테이너 클라이언트 영역의 왼쪽 가장자리 사이의 거리(픽셀)를 나타내는 Int32 값입니다.
- 특성
예제
다음 코드 예제에서는 폼에 세 Button 개의 컨트롤을 만들고 다양한 크기 관련 및 위치 관련 속성을 사용하여 해당 크기와 위치를 설정합니다. 이 예제에서는 Form 너비와 높이가 300픽셀 이상인 가 있어야 합니다.
// Create three buttons and place them on a form using
// several size and location related properties.
void AddOKCancelButtons()
{
// Set the button size and location using
// the Size and Location properties.
Button^ buttonOK = gcnew Button;
buttonOK->Location = Point(136,248);
buttonOK->Size = System::Drawing::Size( 75, 25 );
// Set the Text property and make the
// button the form's default button.
buttonOK->Text = "&OK";
this->AcceptButton = buttonOK;
// Set the button size and location using the Top,
// Left, Width, and Height properties.
Button^ buttonCancel = gcnew Button;
buttonCancel->Top = buttonOK->Top;
buttonCancel->Left = buttonOK->Right + 5;
buttonCancel->Width = buttonOK->Width;
buttonCancel->Height = buttonOK->Height;
// Set the Text property and make the
// button the form's cancel button.
buttonCancel->Text = "&Cancel";
this->CancelButton = buttonCancel;
// Set the button size and location using
// the Bounds property.
Button^ buttonHelp = gcnew Button;
buttonHelp->Bounds = Rectangle(10,10,75,25);
// Set the Text property of the button.
buttonHelp->Text = "&Help";
// Add the buttons to the form.
array<Control^>^temp1 = {buttonOK,buttonCancel,buttonHelp};
this->Controls->AddRange( temp1 );
}
// Create three buttons and place them on a form using
// several size and location related properties.
private void AddOKCancelButtons()
{
// Set the button size and location using
// the Size and Location properties.
Button buttonOK = new Button();
buttonOK.Location = new Point(136,248);
buttonOK.Size = new Size(75,25);
// Set the Text property and make the
// button the form's default button.
buttonOK.Text = "&OK";
this.AcceptButton = buttonOK;
// Set the button size and location using the Top,
// Left, Width, and Height properties.
Button buttonCancel = new Button();
buttonCancel.Top = buttonOK.Top;
buttonCancel.Left = buttonOK.Right + 5;
buttonCancel.Width = buttonOK.Width;
buttonCancel.Height = buttonOK.Height;
// Set the Text property and make the
// button the form's cancel button.
buttonCancel.Text = "&Cancel";
this.CancelButton = buttonCancel;
// Set the button size and location using
// the Bounds property.
Button buttonHelp = new Button();
buttonHelp.Bounds = new Rectangle(10,10, 75, 25);
// Set the Text property of the button.
buttonHelp.Text = "&Help";
// Add the buttons to the form.
this.Controls.AddRange(new Control[] {buttonOK, buttonCancel, buttonHelp} );
}
' Create three buttons and place them on a form using
' several size and location related properties.
Private Sub AddOKCancelButtons()
' Set the button size and location using
' the Size and Location properties.
Dim buttonOK As New Button()
buttonOK.Location = New Point(136, 248)
buttonOK.Size = New Size(75, 25)
' Set the Text property and make the
' button the form's default button.
buttonOK.Text = "&OK"
Me.AcceptButton = buttonOK
' Set the button size and location using the Top,
' Left, Width, and Height properties.
Dim buttonCancel As New Button()
buttonCancel.Top = buttonOK.Top
buttonCancel.Left = buttonOK.Right + 5
buttonCancel.Width = buttonOK.Width
buttonCancel.Height = buttonOK.Height
' Set the Text property and make the
' button the form's cancel button.
buttonCancel.Text = "&Cancel"
Me.CancelButton = buttonCancel
' Set the button size and location using
' the Bounds property.
Dim buttonHelp As New Button()
buttonHelp.Bounds = New Rectangle(10, 10, 75, 25)
' Set the Text property of the button.
buttonHelp.Text = "&Help"
' Add the buttons to the form.
Me.Controls.AddRange(New Control() {buttonOK, buttonCancel, buttonHelp})
End Sub
설명
Left 속성 값은 컨트롤의 Point.X 속성 값 속성 Location 과 동일합니다.
Width 및 Left 속성 값을 변경하면 컨트롤의 Right 속성 값이 변경될 수 있습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET