“Formulaire central VB.net dans l'écran” Réponses codées

Formulaire central VB.net dans l'écran

  Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
    Me.Size = New System.Drawing.Size(400, 650)
    Me.CenterToScreen()
End Sub
Curious Cassowary

Formulaire central VB.net dans l'écran

Public Shared Sub CenterForm(ByVal frm As Form, Optional ByVal parent As Form = Nothing)
    '' Note: call this from frm's Load event!
    Dim r As Rectangle
    If parent IsNot Nothing Then
        r = parent.RectangleToScreen(parent.ClientRectangle)
    Else
        r = Screen.FromPoint(frm.Location).WorkingArea
    End If

    Dim x = r.Left + (r.Width - frm.Width) \ 2
    Dim y = r.Top + (r.Height - frm.Height) \ 2
    frm.Location = New Point(x, y)
End Sub
Curious Cassowary

Réponses similaires à “Formulaire central VB.net dans l'écran”

Questions similaires à “Formulaire central VB.net dans l'écran”

Plus de réponses similaires à “Formulaire central VB.net dans l'écran” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code