在xxx.xaml.cs文件构造函数处加上
WindowStartupLocation = WindowStartupLocation.CenterScreen;
如下所示:
public Login()
{
InitializeComponent();
WindowStartupLocation = WindowStartupLocation.CenterScreen;
}
在你的 XAML 文件中 给 Window 添加以下属性:
WindowStartupLocation="CenterScreen"