7

DataContextのを のMainWindowViewModel に設定しようとしてい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();
    }
}
4

1 に答える 1

23

まだStartupUri余韻が残っていると思いApp.xamlます...

于 2012-08-24T02:07:08.450 に答える