问题描述:
有一个主窗口程序,需要给该程序添加一个通知子窗口。子窗口的位置为右下角。
解决方法:
在子窗口
frmPopMsg
的代码文件中添加如下代码:
public frmPopMsg()
{
InitializeComponent();
int x = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width -this.Width;
int y = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height -this.Height;
Point p = new Point(x, y);
this.PointToScreen(p);
this.Location = p;
}