using ScadaTool.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace ScadaTool { /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { public MainWindow() { //向单例中保存线程的同步上下文 ViewModelHelper.Instance().Context = SynchronizationContext.Current; InitializeComponent(); } private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) { Application.Current.MainWindow.Hide(); e.Cancel = true; } } }