Compartilhar via


Como: conjunto o local da tela do Windows Forms

You can specify where a form is to be displayed on the computer screen by entering values in the Location property.This specifies the position, in pixels, of the top-left corner of the form.Also, you need to set the StartPositionproperty to indicate the boundaries of the display area.

Observação:

Keep in mind that screen size and resolution often vary depending on the user's system.Additionally, systems that have multiple monitors attached may have trouble recognizing the boundaries of the display area.Essas duas situações geralmente fará com que o da localização de um formulário alterar de forma imprevisível, apesar do Location configuração da propriedade. For this reason, the default setting for the StartPosition property for a Windows Application is WindowsDefaultLocation, which tells the operating system to compute the best location for the form at startup, based on the current hardware.Another alternative is to set the StartPosition property to Center and then change the location of the form in code.See "To position forms programmatically" below for more information.

To position forms using the Properties window

  1. In the Properties window, choose the form from the drop-down.Coloque a propriedade do objeto ManualStartPosition para .

  2. Type the values for the Location property, separated by a comma, to position the form, where the first number (X) is the distance from the left border of the display area and second number (Y) is the distance from the upper border of the display area.

    Observação:

    expandir o Location propriedade para inserir o X e Y valores de propriedade individualmente.

To position forms programmatically

  • Define the location of a form at run time by setting the Location property of the form to a Point, as shown in the following example:

    Form1.Location = New Point(100, 100)
    
    Form1.Location = new Point(100, 100);
    
    Form1.set_Location(new Point(100, 100));
    
    Form1->Location = Point(100, 100);
    

    - ou -

    Change the X coordinate or Y coordinate of the form's location using the Left property (for the X coordinate) and the Top property (for the Y coordinate).The following example adjusts the form's X coordinate to the 300 pixel point:

    Form1.Left = 300
    
    Form1.Left = 300;
    
    Form1.set_Left(300);
    
    Form1->Left = 300;
    

To change form position programmatically by increments

  • Increment the X coordinate of the form using the Left property.The following example adjusts the form's X coordinate by 200 pixels:

    Form1.Left += 200
    
    Form1.Left += 200;
    
    Form1.set_Left(Form1.get_Left() + 200);
    
    Form1->Left += 200;
    
    Observação:

    Use o Location propriedade para conjunto um Windows formulário X e Y posiciona simultaneamente. To set them individually, use the form's Left (X) or Top (Y) property.Do not try to implicitly set the X and Y coordinates of the Point structure that represents the form's location, because this contains a copy of the form's coordinates.

    In lieu of using the Location property, the DesktopLocation property can be used to set the location of your form.This property sets the location of your form relative to the taskbar and is useful if the taskbar has been docked to the top or left of the user's monitor.Docking the taskbar in this fashion obscures the desktop coordinates (0,0).A form with the DesktopLocationproperty set to (0, 0) always appears in the upper left corner of the primary monitor, but not behind the taskbar.

To set the Desktop Location property programmatically

  • Set the DesktopLocation property as you would any other property.The following example establishes a new location for an Accounts form.

    Dim frmAccounts as new Form()
    Set FrmAccounts.DesktopLocation = new Point(100,100)
    
    Form frmAccounts= new Form();
    frmAccounts.DesktopLocation = new Point(100,100);
    
    Form frmAccounts =  new Form();
    frmAccounts.set_DesktopLocation(new Point(100, 100));
    
    Form^ frmAccounts= gcnew Form();
    frmAccounts->DesktopLocation = Point(100,100);
    
    Observação:

    O DesktopLocation propriedade não aparece na janela Propriedades e só pode ser conjunto no código.

Consulte também

Referência

Visão Geral dos Formulários do Windows

Outros recursos

Criando um Novo Formulário do Windows

Organizando controles no Windows Forms