VB.net 将form控制在右下角

前端之家收集整理的这篇文章主要介绍了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 原文链接:https://www.f2er.com/vb/258541.html

猜你在找的VB相关文章