VB.net 将form控制在右下角

    Private Sub FormProjectInfo_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
        With Me
            .Text = "项目更新提示"
            .ControlBox = False
            .Location = New Point(My.Computer.Screen.WorkingArea.Width - Me.Width, My.Computer.Screen.WorkingArea.Bottom - Me.Height)
            .TopMost = True
        End With
    End Sub

你可能感兴趣的:(VB,点滴积累,vb.net,form右下角)