// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.WixBA
{
using System.ComponentModel;
using System.Windows;
using System.Windows.Interop;
///
/// Interaction logic for View.xaml
///
public partial class RootView : Window
{
///
/// Creates the view populated with it's model.
///
/// Model for the view.
public RootView(RootViewModel viewModel)
{
this.DataContext = viewModel;
this.Loaded += (sender, e) => WixBA.Model.Engine.CloseSplashScreen();
this.Closed += (sender, e) => this.Dispatcher.InvokeShutdown(); // shutdown dispatcher when the window is closed.
this.InitializeComponent();
viewModel.Dispatcher = this.Dispatcher;
viewModel.ViewWindowHandle = new WindowInteropHelper(this).EnsureHandle();
}
///
/// Event is fired when the window is closing.
///
///
///
private void Window_Closing(object sender, CancelEventArgs e)
{
RootViewModel rvm = this.DataContext as RootViewModel;
if ((null != rvm) && (InstallationState.Applying == rvm.InstallState))
{
rvm.CancelButton_Click();
if (rvm.Canceled)
{
// Defer closing until the engine has canceled processing.
e.Cancel = true;
rvm.AutoClose = true;
}
}
}
}
}