如何在右上角设置 winform
起始位置?我的意思是当用户单击(启动)我的 winform 应用程序时,winform 将出现在屏幕的右上角?
最佳答案
使用 Load 事件更改位置,在应用用户首选项和自动缩放后,您最早会知道窗口的实际大小:
Public Class Form1
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
Dim scr = Screen.FromPoint(Me.Location)
Me.Location = New Point(scr.WorkingArea.Right - Me.Width, scr.WorkingArea.Top)
MyBase.OnLoad(e)
End Sub
End Class
关于.net - 如何在右上角设置winform起始位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7892090/