Form.DesktopBounds Proprietà
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.
Ottiene o imposta le dimensioni e la posizione del form sul desktop di Windows.
public:
property System::Drawing::Rectangle DesktopBounds { System::Drawing::Rectangle get(); void set(System::Drawing::Rectangle value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle DesktopBounds { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DesktopBounds : System.Drawing.Rectangle with get, set
Public Property DesktopBounds As Rectangle
Valore della proprietà
Oggetto Rectangle che rappresenta i limiti del form sul desktop di Windows usando le coordinate del desktop.
- Attributi
Esempio
Nell'esempio seguente vengono impostate le dimensioni e la posizione di un modulo in modo che il modulo sia posizionato da 50 pixel dal bordo sinistro del desktop e da 50 pixel dalla parte superiore del desktop. In questo esempio è necessario che il metodo sia definito all'interno di una classe form.
public:
void MoveMyForm()
{
// Create a Rectangle object that will be used as the bound of the form.
Rectangle tempRect = Rectangle( 50, 50, 100, 100 );
// Set the bounds of the form using the Rectangle object.
this->DesktopBounds = tempRect;
}
public void MoveMyForm()
{
// Create a Rectangle object that will be used as the bound of the form.
Rectangle tempRect = new Rectangle(50,50,100,100);
// Set the bounds of the form using the Rectangle object.
this.DesktopBounds = tempRect;
}
Public Sub MoveMyForm()
' Create a Rectangle object that will be used as the bound of the form.
Dim tempRect As New Rectangle(50, 50, 100, 100)
' Set the bounds of the form using the Rectangle object.
DesktopBounds = tempRect
End Sub
Commenti
Le coordinate desktop si basano sull'area di lavoro dello schermo, che esclude la barra delle applicazioni. Il sistema di coordinate del desktop è basato su pixel. Se l'applicazione è in esecuzione in un sistema di monitoraggio multiplo, le coordinate del modulo sono le coordinate per il desktop combinato.
È possibile usare questa proprietà per ridimensionare e posizionare un modulo rispetto ad altri moduli o applicazioni sul desktop di Windows.