//让窗体显示在右下角
Screen screen = Screen.AllScreens[0];
this.DesktopLocation = new Point(screen.Bounds.Width - (this.Width + 5), screen.Bounds.Height - this.Height + 33));
//让窗体一直显示在最前面
this.TopMost = true;
//让窗体显示在右下角
Screen screen = Screen.AllScreens[0];
this.DesktopLocation = new Point(screen.Bounds.Width - (this.Width + 5), screen.Bounds.Height - this.Height + 33));
//让窗体一直显示在最前面
this.TopMost = true;