Screen.GetWorkingArea Método

Definição

Recupera a área de trabalho de uma exibição.

Sobrecargas

GetWorkingArea(Point)

Recupera a área de trabalho mais próxima do ponto especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

GetWorkingArea(Rectangle)

Recupera a área de trabalho da exibição que contém a maior parte do retângulo especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

GetWorkingArea(Control)

Recupera a área de trabalho para a exibição que contém a maior região do controle especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

GetWorkingArea(Point)

Recupera a área de trabalho mais próxima do ponto especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

public:
 static System::Drawing::Rectangle GetWorkingArea(System::Drawing::Point pt);
public static System.Drawing.Rectangle GetWorkingArea (System.Drawing.Point pt);
static member GetWorkingArea : System.Drawing.Point -> System.Drawing.Rectangle
Public Shared Function GetWorkingArea (pt As Point) As Rectangle

Parâmetros

pt
Point

Um Point que especifica as coordenadas para as quais a área de trabalho deve ser recuperada.

Retornos

Rectangle

Um Rectangle que especifica a área de trabalho. Em vários ambientes de exibição em que nenhuma exibição contém o ponto especificado, a exibição mais próxima ao ponto é retornada.

Exemplos

O exemplo de código a seguir demonstra o uso da PrimaryScreen propriedade e do GetWorkingArea método. Esse método requer um formulário que contém um botão chamado Button1

   // This method will adjust the size of the form to utilize 
   // the working area of the screen.
private:
   void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      // Retrieve the working rectangle from the Screen class
      // using the PrimaryScreen and the WorkingArea properties.
      System::Drawing::Rectangle workingRectangle = Screen::PrimaryScreen->WorkingArea;
      
      // Set the size of the form slightly less than size of 
      // working rectangle.
      this->Size = System::Drawing::Size( workingRectangle.Width - 10, workingRectangle.Height - 10 );
      
      // Set the location so the entire form is visible.
      this->Location = System::Drawing::Point( 5, 5 );
   }
// This method will adjust the size of the form to utilize 
// the working area of the screen.
private void Button1_Click(System.Object sender, System.EventArgs e)
{
    // Retrieve the working rectangle from the Screen class
    // using the PrimaryScreen and the WorkingArea properties.
    System.Drawing.Rectangle workingRectangle = 
        Screen.PrimaryScreen.WorkingArea;
    
    // Set the size of the form slightly less than size of 
    // working rectangle.
    this.Size = new System.Drawing.Size(
        workingRectangle.Width-10, workingRectangle.Height-10);

    // Set the location so the entire form is visible.
    this.Location = new System.Drawing.Point(5, 5);
}
' This method will adjust the size of the form to utilize 
' the working area of the screen.

Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click

    ' Retrieve the working rectangle from the Screen class
    ' using the PrimaryScreen and the WorkingArea properties. 
    Dim workingRectangle As System.Drawing.Rectangle = _
        Screen.PrimaryScreen.WorkingArea

    ' Set the size of the form slightly less than size of 
    ' working rectangle.
    Me.Size = New System.Drawing.Size(workingRectangle.Width - 10, _
        workingRectangle.Height - 10)

    ' Set the location so the entire form is visible.
    Me.Location = New System.Drawing.Point(5, 5)

End Sub

Aplica-se a

GetWorkingArea(Rectangle)

Recupera a área de trabalho da exibição que contém a maior parte do retângulo especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

public:
 static System::Drawing::Rectangle GetWorkingArea(System::Drawing::Rectangle rect);
public static System.Drawing.Rectangle GetWorkingArea (System.Drawing.Rectangle rect);
static member GetWorkingArea : System.Drawing.Rectangle -> System.Drawing.Rectangle
Public Shared Function GetWorkingArea (rect As Rectangle) As Rectangle

Parâmetros

rect
Rectangle

Um Rectangle que especifica a área para a qual a área de trabalho deve ser recuperada.

Retornos

Rectangle

Um Rectangle que especifica a área de trabalho. Em ambientes com várias telas em que nenhuma tela contém o retângulo especificado, a tela mais próxima ao retângulo será retornada.

Aplica-se a

GetWorkingArea(Control)

Recupera a área de trabalho para a exibição que contém a maior região do controle especificado. A área de trabalho é a área de trabalho de exibição, excluindo as barras de tarefas, janelas encaixadas e barras de ferramentas encaixadas.

public:
 static System::Drawing::Rectangle GetWorkingArea(System::Windows::Forms::Control ^ ctl);
public static System.Drawing.Rectangle GetWorkingArea (System.Windows.Forms.Control ctl);
static member GetWorkingArea : System.Windows.Forms.Control -> System.Drawing.Rectangle
Public Shared Function GetWorkingArea (ctl As Control) As Rectangle

Parâmetros

ctl
Control

O Control para o qual recuperar a área de trabalho.

Retornos

Rectangle

Um Rectangle que especifica a área de trabalho. Em vários ambientes de exibição em que nenhuma exibição contém o controle especificado, a exibição mais próxima ao controle é retornada.

Aplica-se a