Control.SetBounds 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컨트롤의 범위를 설정합니다.
오버로드
SetBounds(Int32, Int32, Int32, Int32) |
컨트롤의 범위를 지정된 위치와 크기로 설정합니다. |
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified) |
컨트롤의 지정된 범위를 특정 위치와 크기로 설정합니다. |
SetBounds(Int32, Int32, Int32, Int32)
컨트롤의 범위를 지정된 위치와 크기로 설정합니다.
public:
void SetBounds(int x, int y, int width, int height);
public void SetBounds (int x, int y, int width, int height);
member this.SetBounds : int * int * int * int -> unit
Public Sub SetBounds (x As Integer, y As Integer, width As Integer, height As Integer)
매개 변수
추가 정보
적용 대상
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)
컨트롤의 지정된 범위를 특정 위치와 크기로 설정합니다.
public:
void SetBounds(int x, int y, int width, int height, System::Windows::Forms::BoundsSpecified specified);
public void SetBounds (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);
member this.SetBounds : int * int * int * int * System.Windows.Forms.BoundsSpecified -> unit
Public Sub SetBounds (x As Integer, y As Integer, width As Integer, height As Integer, specified As BoundsSpecified)
매개 변수
- specified
- BoundsSpecified
BoundsSpecified 값의 비트 조합입니다. 매개 변수를 지정하지 않으면 현재 값이 사용됩니다.
예제
다음 코드 예제에서는 이벤트의 화면에 을 가운데 Form 에 표시합니다 Layout . 이렇게 하면 양식의 크기가 조정될 때 양식이 가운데에 유지됩니다. 이 예제에서는 컨트롤을 만들어야 합니다 Form .
private:
void MyForm_Layout( Object^ /*sender*/, System::Windows::Forms::LayoutEventArgs^ /*e*/ )
{
// Center the Form on the user's screen everytime it requires a Layout.
this->SetBounds( (Screen::GetBounds( this ).Width / 2) - (this->Width / 2), (Screen::GetBounds( this ).Height / 2) - (this->Height / 2), this->Width, this->Height, BoundsSpecified::Location );
}
private void MyForm_Layout(object sender, System.Windows.Forms.LayoutEventArgs e)
{
// Center the Form on the user's screen everytime it requires a Layout.
this.SetBounds((Screen.GetBounds(this).Width/2) - (this.Width/2),
(Screen.GetBounds(this).Height/2) - (this.Height/2),
this.Width, this.Height, BoundsSpecified.Location);
}
Private Sub MyForm_Layout(ByVal sender As Object, _
ByVal e As System.Windows.Forms.LayoutEventArgs) Handles MyBase.Layout
' Center the Form on the user's screen everytime it requires a Layout.
Me.SetBounds((System.Windows.Forms.Screen.GetBounds(Me).Width / 2) - (Me.Width / 2), _
(System.Windows.Forms.Screen.GetBounds(Me).Height / 2) - (Me.Height / 2), _
Me.Width, Me.Height, System.Windows.Forms.BoundsSpecified.Location)
End Sub
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET