WPF运行中怎么用C# 代码调整窗口位置,特别是怎么居中到屏幕中央

2024-12-18 23:39:52
推荐回答(2个)
回答1:

在xxx.xaml.cs文件构造函数处加上
WindowStartupLocation = WindowStartupLocation.CenterScreen;

如下所示:
public Login()
{
InitializeComponent();
WindowStartupLocation = WindowStartupLocation.CenterScreen;

}

回答2:

在你的 XAML 文件中 给 Window 添加以下属性:

WindowStartupLocation="CenterScreen"