使用C#加载表单时,如何在屏幕的右下角放置表单?

最佳答案

尝试一下

Rectangle workingArea = Screen.GetWorkingArea(this);
this.Location = new Point(workingArea.Right - Size.Width,
                          workingArea.Bottom - Size.Height);

希望它对您有效。

关于c# - 将WinForm放在右下角,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1385674/

10-10 18:29