Interaction logic for VMIContextViewModel.xaml
Inheritance: System.Windows.Window
Example #1
0
        public void Start()
        {
            VMIContext = new VMIContextViewModel( Context, Config, LogService, HelpService );

            _view = new VMIContextView();
            _view.DataContext = VMIContext;
            _view.Closing += OnViewClosing;
            _view.Show();
        }