FormStartPosition Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Specifica la posizione iniziale di un modulo.
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
- Ereditarietà
- Attributi
Campi
| Nome | Valore | Descrizione |
|---|---|---|
| Manual | 0 | La posizione del form è determinata dalla Location proprietà . |
| CenterScreen | 1 | Il modulo è centrato sulla visualizzazione corrente e ha le dimensioni specificate nella dimensione del modulo. |
| WindowsDefaultLocation | 2 | Il modulo viene posizionato nel percorso predefinito di Windows e ha le dimensioni specificate nella dimensione del modulo. |
| WindowsDefaultBounds | 3 | Il modulo è posizionato nel percorso predefinito di Windows e ha i limiti determinati per impostazione predefinita da Windows. |
| CenterParent | 4 | Il form viene centrato all'interno dei limiti del relativo formato padre. |
Esempio
In questo esempio si modifica la posizione iniziale del modulo al centro dello schermo e si visualizzano le informazioni sulla posizione usando un'etichetta. In questo esempio si presuppone che sia già stato creato un Form oggetto denominato 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
Commenti
Questa enumerazione viene utilizzata dalla StartPosition proprietà della Form classe . Rappresenta le diverse posizioni iniziali del form. La posizione iniziale predefinita è WindowsDefaultLocation.