設定方法
1.Windowのプロパティの[共通]-[WindowStartupLocation]を「CenterScreen」にする
コードで実現する場合は以下。
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        /*
         * Windowの表示位置をディスプレイの中央にする
         */
        this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
    }
}結果
ディスプレイの中央に表示された
※上記画像では分からないが、ディスプレイの中央に表示されている

