我正在使用c#WinForm开发一个sman通知应用程序.我想把主窗体放在屏幕工作区的右下角.
在多个屏幕的情况下,有一种方法来找到最右边的屏幕放置应用程序,或者至少记住最后使用的屏幕,并将窗体放在右下角?
在多个屏幕的情况下,有一种方法来找到最右边的屏幕放置应用程序,或者至少记住最后使用的屏幕,并将窗体放在右下角?
解决方法
我目前没有多个显示器要检查,但它应该是这样的
public partial class LowerRightForm : Form { public LowerRightForm() { InitializeComponent(); } protected override void OnLoad(EventArgs e) { PlaceLowerRight(); base.OnLoad(e); } private void PlaceLowerRight() { //Determine "rightmost" screen Screen rightmost = Screen.AllScreens[0]; foreach (Screen screen in Screen.AllScreens) { if (screen.WorkingArea.Right > rightmost.WorkingArea.Right) rightmost = screen; } this.Left = rightmost.WorkingArea.Right - this.Width; this.Top = rightmost.WorkingArea.Bottom - this.Height; } }