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

时间:2023-02-04 08:07:06

问题描述:

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

解决方法:

在子窗口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;
        }