BoundsSpecified 枚举

定义

指定在定义控件的大小和位置时要使用的控件边界。

此枚举支持其成员值的按位组合。

public enum class BoundsSpecified
[System.Flags]
public enum BoundsSpecified
[<System.Flags>]
type BoundsSpecified = 
Public Enum BoundsSpecified
继承
BoundsSpecified
属性

字段

All 15

指定 LocationSize 属性值都需定义。

Height 8

指定需定义控件的高度。

Location 3

指定控件的 XY 坐标都需定义。

None 0

未定义任何边界。

Size 12

指定控件的 WidthHeight 属性值都需定义。

Width 4

指定需定义控件的宽度。

X 1

指定需定义控件的左边缘。

Y 2

指定需定义控件的上边缘。

示例

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

注解

调用 SetBoundsCore 类的 和 SetBounds 方法 Control 时,请使用此枚举的成员。

适用于

另请参阅