FormStartPosition 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
フォームの初期位置を指定します。
public enum class FormStartPosition
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormStartPosition
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 );
}
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
注釈
この列挙型は、クラスのStartPositionFormプロパティによって使用されます。 フォームのさまざまな開始位置を表します。 既定の開始位置は WindowsDefaultLocation
.