Computer.Screen Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'objet Screen qui représente l'écran principal de l'ordinateur.
public:
property System::Windows::Forms::Screen ^ Screen { System::Windows::Forms::Screen ^ get(); };
public System.Windows.Forms.Screen Screen { get; }
member this.Screen : System.Windows.Forms.Screen
Public ReadOnly Property Screen As Screen
Valeur de propriété
Objet Screen qui représente l'écran principal de l'ordinateur.
Exemples
Cet exemple utilise la WorkingArea propriété de la My.Computer.Screen
propriété pour déterminer la zone de travail de l’affichage principal de l’ordinateur, puis redimensionne le formulaire pour remplir la zone de travail.
Private Sub EnlargeForm()
Me.Size = My.Computer.Screen.WorkingArea.Size
Me.Location = New System.Drawing.Point(0, 0)
End Sub
Cet exemple doit s’exécuter dans une application Windows Forms.
Remarques
La My.Computer.Screen
propriété fournit des fonctionnalités similaires à la PrimaryScreen propriété .
Disponibilité par type de projet
Type de projet | Disponible |
---|---|
Application Windows Forms | Oui |
Bibliothèque de classes | Oui |
Application console | Oui |
Bibliothèque de contrôles Windows Forms | Oui |
Bibliothèque de contrôles web | Non |
Service Windows | Oui |
Site web | Non |