2 using System.Collections.Generic;
6 using System.Windows.Controls;
7 using System.Windows.Data;
8 using System.Windows.Documents;
9 using System.Windows.Input;
10 using System.Windows.Media;
11 using System.Windows.Media.Imaging;
12 using System.Windows.Navigation;
13 using System.Windows.Shapes;
14 using SiliconStudio.Paradox.Framework.ViewModel;
15 using System.ComponentModel;
16 using System.Collections.ObjectModel;
19 namespace SiliconStudio.
Paradox.DebugTools
28 InitializeComponent();
30 if (engineContext == null)
31 throw new ArgumentNullException(
"engineContext");
33 if (terminateCommand != null)
36 this.Loaded += (
s, e) =>
38 scriptEditor.Initialize(engineContext);
39 scriptMonitor.Initialize(engineContext);
44 public ICommand TerminateCommand {
get;
private set; }
An implementation of CommandBase that route Execute calls to a given anonymous method.