Form.StartPosition プロパティ
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Dim instance As Form Dim value As FormStartPosition value = instance.StartPosition instance.StartPosition = value
[LocalizableAttribute(true)] public: property FormStartPosition StartPosition { FormStartPosition get (); void set (FormStartPosition value); }
/** @property */ public FormStartPosition get_StartPosition () /** @property */ public void set_StartPosition (FormStartPosition value)
public function get StartPosition () : FormStartPosition public function set StartPosition (value : FormStartPosition)
フォームの開始位置を表す FormStartPosition。


このプロパティを使用すると、実行時にフォームを表示するときの開始位置を設定できます。フォームは指定した位置に表示することも、Windows で指定されている既定の位置に表示することもできます。フォームの表示位置として画面の中央を指定することや、マルチ ドキュメント インターフェイス (MDI) 子フォームの場合は、親フォームの中央を指定することもできます。

Form の新しいインスタンスを作成し、ShowDialog メソッドを呼び出して、フォームをダイアログ ボックスとして表示するコード例を次に示します。この例では、FormBorderStyle、AcceptButton、CancelButton、StartPosition の各プロパティを設定してフォームの外観と機能を変更し、ダイアログ ボックスとして表示します。この例では、フォームの Controls コレクションの Add メソッドを使用して、2 つの Button コントロールも追加します。また、HelpButton プロパティを使用して、ダイアログ ボックスのキャプション バーにヘルプ ボタンを表示します。
Public Sub CreateMyForm() ' Create a new instance of the form. Dim form1 As New Form() ' Create two buttons to use as the accept and cancel buttons. Dim button1 As New Button() Dim button2 As New Button() ' Set the text of button1 to "OK". button1.Text = "OK" ' Set the position of the button on the form. button1.Location = New Point(10, 10) ' Set the text of button2 to "Cancel". button2.Text = "Cancel" ' Set the position of the button based on the location of button1. button2.Location = New Point(button1.Left, button1.Height + button1.Top + 10) ' Set the caption bar text of the form. form1.Text = "My Dialog Box" ' Display a help button on the form. form1.HelpButton = True ' Define the border style of the form to a dialog box. form1.FormBorderStyle = FormBorderStyle.FixedDialog ' Set the accept button of the form to button1. form1.AcceptButton = button1 ' Set the cancel button of the form to button2. form1.CancelButton = button2 ' Set the start position of the form to the center of the screen. form1.StartPosition = FormStartPosition.CenterScreen ' Add button1 to the form. form1.Controls.Add(button1) ' Add button2 to the form. form1.Controls.Add(button2) ' Display the form as a modal dialog box. form1.ShowDialog() End Sub 'CreateMyForm
public void CreateMyForm() { // Create a new instance of the form. Form form1 = new Form(); // Create two buttons to use as the accept and cancel buttons. Button button1 = new Button (); Button button2 = new Button (); // Set the text of button1 to "OK". button1.Text = "OK"; // Set the position of the button on the form. button1.Location = new Point (10, 10); // Set the text of button2 to "Cancel". button2.Text = "Cancel"; // Set the position of the button based on the location of button1. button2.Location = new Point (button1.Left, button1.Height + button1.Top + 10); // Set the caption bar text of the form. form1.Text = "My Dialog Box"; // Display a help button on the form. form1.HelpButton = true; // Define the border style of the form to a dialog box. form1.FormBorderStyle = FormBorderStyle.FixedDialog; // Set the accept button of the form to button1. form1.AcceptButton = button1; // Set the cancel button of the form to button2. form1.CancelButton = button2; // Set the start position of the form to the center of the screen. form1.StartPosition = FormStartPosition.CenterScreen; // Add button1 to the form. form1.Controls.Add(button1); // Add button2 to the form. form1.Controls.Add(button2); // Display the form as a modal dialog box. form1.ShowDialog(); }
public: void CreateMyForm() { // Create a new instance of the form. Form^ form1 = gcnew Form; // Create two buttons to use as the accept and cancel buttons. Button^ button1 = gcnew Button; Button^ button2 = gcnew Button; // Set the text of button1 to "OK". button1->Text = "OK"; // Set the position of the button on the form. button1->Location = Point(10,10); // Set the text of button2 to "Cancel". button2->Text = "Cancel"; // Set the position of the button based on the location of button1. button2->Location = Point( button1->Left, button1->Height + button1->Top + 10 ); // Set the caption bar text of the form. form1->Text = "My Dialog Box"; // Display a help button on the form. form1->HelpButton = true; // Define the border style of the form to a dialog box. form1->FormBorderStyle = ::FormBorderStyle::FixedDialog; // Set the accept button of the form to button1. form1->AcceptButton = button1; // Set the cancel button of the form to button2. form1->CancelButton = button2; // Set the start position of the form to the center of the screen. form1->StartPosition = FormStartPosition::CenterScreen; // Add button1 to the form. form1->Controls->Add( button1 ); // Add button2 to the form. form1->Controls->Add( button2 ); // Display the form as a modal dialog box. form1->ShowDialog(); }
public void CreateMyForm() { // Create a new instance of the form. Form form1 = new Form(); // Create two buttons to use as the accept and cancel buttons. Button button1 = new Button(); Button button2 = new Button(); // Set the text of button1 to "OK". button1.set_Text("OK"); // Set the position of the button on the form. button1.set_Location(new Point(10, 10)); // Set the text of button2 to "Cancel". button2.set_Text("Cancel"); // Set the position of the button based on the location of button1. button2.set_Location(new Point(button1.get_Left(), button1.get_Height() + button1.get_Top() + 10)); // Set the caption bar text of the form. form1.set_Text("My Dialog Box"); // Display a help button on the form. form1.set_HelpButton(true); // Define the border style of the form to a dialog box. form1.set_FormBorderStyle(get_FormBorderStyle().FixedDialog); // Set the accept button of the form to button1. form1.set_AcceptButton(button1); // Set the cancel button of the form to button2. form1.set_CancelButton(button2); // Set the start position of the form to the center of the screen. form1.set_StartPosition(FormStartPosition.CenterScreen); // Add button1 to the form. form1.get_Controls().Add(button1); // Add button2 to the form. form1.get_Controls().Add(button2); // Display the form as a modal dialog box. form1.ShowDialog(); } //CreateMyForm

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


FormStartPosition 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

<ComVisibleAttribute(True)> _ Public Enumeration FormStartPosition

メンバ名 | 説明 | |
---|---|---|
CenterParent | フォームは、親フォームの境界内の中央に配置されます。 | |
CenterScreen | フォームは、現在の表示の中央に配置され、フォームのサイズとして指定された大きさになります。 | |
Manual | フォームの位置は、Location プロパティによって決定されます。 | |
WindowsDefaultBounds | フォームは Windows の既定位置に配置され、Windows の既定により決定されている境界を持ちます。 | |
WindowsDefaultLocation | フォームは Windows の既定位置に配置され、フォームのサイズとして指定された大きさになります。 |

この列挙体は、Form クラスの StartPosition プロパティで使用されます。この列挙体はフォームのさまざまな開始位置を表します。既定の開始位置は WindowsDefaultLocation です。

この例では、フォームの開始位置を画面の中央に変更し、ラベルを使用して位置情報を表示します。この例は、Form1 という名前の Form が既に作成されていることを前提にしています。
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 'InitMyForm
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: 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.set_Location(new System.Drawing.Point(54, 128)); label1.set_Name("label1"); label1.set_Size(new System.Drawing.Size(220, 80)); label1.set_Text("Start position information"); this.get_Controls().Add(label1); // Moves the start position to the center of the screen. set_StartPosition(FormStartPosition.CenterScreen); // Displays the position information. label1.set_Text("The start position is " + get_StartPosition()); } //InitMyForm

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からForm.StartPositionを検索する場合は、下記のリンクをクリックしてください。

- Form.StartPositionのページへのリンク