C# winform窗体在桌面右下角显示(任务栏上方)

问题描述:

有一个主窗口程序,需要给该程序添加一个通知子窗口。子窗口的位置为右下角。

解决方法:

在子窗口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;
}
上一篇:handlebars模板引擎使用初探1


下一篇:关于Unity中的刚体和碰撞器的相关用法(二)