Example #1
0
 public abstract IVariablesWindowVM Create(VariablesWindowVMOptions variablesWindowVMOptions);
Example #2
0
 public override IVariablesWindowVM Create(VariablesWindowVMOptions variablesWindowVMOptions)
 {
     uiDispatcher.VerifyAccess();
     return(new VariablesWindowVM(variablesWindowVMOptions, dbgManager, uiDispatcher, valueNodesVMFactory, dbgLanguageService, dbgCallStackService, messageBoxService));
 }
 protected void Initialize(IWpfCommandService wpfCommandService, VariablesWindowVMFactory variablesWindowVMFactory, VariablesWindowVMOptions options)
 {
     variablesWindowVM = variablesWindowVMFactory.Create(options);
     variablesWindowVM.TreeViewChanged += VariablesWindowVM_TreeViewChanged;
     variablesWindowControl.DataContext = variablesWindowVM;
 }