过去的要求是窗口是CenterScreen
,但客户最近要求窗口现在稍微在其当前位置的右侧。
窗口的当前定义是:
我希望执行以下操作会起作用:
public MyWindow()
{
InitializeComponent();
// change the position after the component is initialized
this.Left = this.Left + this.Width;
}
但是当窗口出现在屏幕上时,它仍然处于相同的位置。
我需要将启动位置更改为Manual
自己并定位吗?如果是这样,我如何让它从中心偏移?