C# 如何指定窗体在右上角显示 ?

2024-11-14 21:46:07
推荐回答(3个)
回答1:

int y = Screen.PrimaryScreen.WorkingArea.Width;
int x = this.Size.Width;
if (x > y)
{
x = 0;
}
else
{
x = y - x;
}
Point p = new Point(x, 0);
this.Location = p;

回答2:

设置窗口坐标就可以了

回答3:

Screen用于获取用户桌面信息,可以根据此然后使用PointToScreen来确定定位点