DataContext
のを のMainWindow
ViewModel に設定しようとしていApp.OnStartup
ます。MainWindow()
その際、コンストラクターが 2 回呼び出され、2 つのウィンドウが開いていることに気付きました。この動作の原因は何ですか?私のコードは次のとおりです。
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
MainWindow mainWindow = new MainWindow();
// Create the ViewModel to which the main window binds.
MainWindowViewModel mainWindowViewModel = new MainWindowViewModel();
// Register handle such that when the mainWindowViewModel asks to be closed, close the window.
mainWindowViewModel.RequestClose += delegate(System.Object o, System.EventArgs eventArgs)
{
mainWindow.Close();
};
mainWindow.DataContext = mainWindowViewModel;
mainWindow.Show();
}
}