FormStartPosition Enumeração
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica a posição inicial de um formulário.
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
- Herança
- Atributos
Campos
CenterParent | 4 | O formulário é centralizado dentro dos limites do formulário pai. |
CenterScreen | 1 | O formulário é centralizado na exibição atual e tem as dimensões especificadas no tamanho do formulário. |
Manual | 0 | A posição do formulário é determinada pela propriedade Location. |
WindowsDefaultBounds | 3 | O formulário é posicionado no local padrão do Windows e tem os limites determinados pelo padrão do Windows. |
WindowsDefaultLocation | 2 | O formulário é posicionado no local padrão do Windows e tem as dimensões especificadas no tamanho do formulário. |
Exemplos
Neste exemplo, você altera a posição inicial do formulário para o centro da tela e exibe as informações de posição usando um rótulo. Este exemplo pressupõe que você já tenha criado um Form nome 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
Comentários
Essa enumeração é usada pela StartPosition propriedade da Form classe. Ele representa as diferentes posições de início do formulário. A posição inicial padrão é WindowsDefaultLocation
.