我在定位窗口时遇到了问题。该窗口不是我的主窗口。我想将窗口定位到任务栏上方工作区的右下角。
我有以下代码:
public partial class NotificationWindow : Window
{
public NotificationWindow()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Rect desktopWorkingArea = SystemParameters.WorkArea;
Left = desktopWorkingArea.Right - Width;
Top = desktopWorkingArea.Bottom - Height;
}
}
该代码的不良结果:
我想让通知窗口在任务栏上方稍高一点。我认为我的代码应该可以工作,但事实并非如此。
谢谢你的建议。