FormStartPosition 枚举
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定窗体的初始位置。
public enum class FormStartPosition
C#
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormStartPosition
C#
public enum FormStartPosition
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormStartPosition =
type FormStartPosition =
Public Enum FormStartPosition
- 继承
- 属性
CenterParent | 4 | 窗体在其父窗体中居中。 |
CenterScreen | 1 | 窗体在当前显示窗口中居中,其尺寸在窗体大小中指定。 |
Manual | 0 | 窗体的位置由 Location 属性确定。 |
WindowsDefaultBounds | 3 | 窗体定位在 Windows 默认位置,其边界也由 Windows 默认决定。 |
WindowsDefaultLocation | 2 | 窗体定位在 Windows 默认位置,其尺寸在窗体大小中指定。 |
在此示例中,将窗体的起始位置更改为屏幕中心,并使用标签显示位置信息。 此示例假定你已创建一个 Form 命名 Form1
的 。
public:
void InitMyForm()
{
// Adds a label to the form.
Label^ label1 = gcnew Label;
label1->Location = System::Drawing::Point( 54, 128 );
label1->Name = "label1";
label1->Size = System::Drawing::Size( 220, 80 );
label1->Text = "Start position information";
this->Controls->Add( label1 );
// Moves the start position to the center of the screen.
StartPosition = FormStartPosition::CenterScreen;
// Displays the position information.
label1->Text = String::Format( "The start position is {0}", StartPosition );
}
C#
public void InitMyForm()
{
// Adds a label to the form.
Label label1 = new Label();
label1.Location = new System.Drawing.Point(54, 128);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(220, 80);
label1.Text = "Start position information";
this.Controls.Add(label1);
// Moves the start position to the center of the screen.
StartPosition = FormStartPosition.CenterScreen;
// Displays the position information.
label1.Text = "The start position is " + StartPosition;
}
Public Sub InitMyForm()
' Adds a label to the form.
Dim label1 As New Label()
label1.Location = New System.Drawing.Point(54, 128)
label1.Name = "label1"
label1.Size = New System.Drawing.Size(220, 80)
label1.Text = "Start position information"
Me.Controls.Add(label1)
' Moves the start position to the center of the screen.
StartPosition = FormStartPosition.CenterScreen
' Displays the position information.
label1.Text = "The start position is " + StartPosition
End Sub
此枚举由 StartPosition 类的属性 Form 使用。 它表示窗体的不同起始位置。 默认起始位置为 WindowsDefaultLocation
。
产品 | 版本 |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 |
Windows Desktop | 3.0, 3.1, 5, 6, 7 |