作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何设置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/
我是一名优秀的程序员,十分优秀!