我试图让弹出窗口始终显示在任务栏上方,而不管主窗口位置如何。 我们可以在WPF中做些什么来实现这个目标?
如何让WPF弹出窗口始终显示在Windows任务栏上方? 谢谢!
答案 0 :(得分:0)
在表单加载事件中进行更改。
int screenWidth = Screen.PrimaryScreen.WorkingArea.Height-(表单弹出窗口的宽度);
int screenHeight = Screen.PrimaryScreen.WorkingArea.Width-(表单弹出窗口的高度);
this.Location = new Point(screenWidth,screenHeight);