FormStartPosition Wyliczenie
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa początkową pozycję formularza.
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
- Dziedziczenie
- Atrybuty
Pola
CenterParent | 4 | Formularz jest wyśrodkowany w granicach formularza nadrzędnego. |
CenterScreen | 1 | Formularz jest wyśrodkowany na bieżącym wyświetlaczu i ma wymiary określone w rozmiarze formularza. |
Manual | 0 | Pozycja formularza jest określana przez Location właściwość . |
WindowsDefaultBounds | 3 | Formularz jest umieszczony w Windows lokalizacji domyślnej i ma granice określone przez Windows domyślne. |
WindowsDefaultLocation | 2 | Formularz jest umieszczony w Windows lokalizacji domyślnej i ma wymiary określone w rozmiarze formularza. |
Przykłady
W tym przykładzie zmienisz położenie formularza na środek ekranu i wyświetlisz informacje o pozycji przy użyciu etykiety. W tym przykładzie założono, że utworzono już Form nazwę 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
Uwagi
Ta wyliczenie jest używana przez StartPosition właściwość Form klasy. Reprezentuje ona różne pozycje początkowe formularza. Domyślną pozycją początkową jest WindowsDefaultLocation
.