Example #1
0
 public DataSchemaItem(DataSchemaNodePath nodePath, SchemaItem schemaItem, DataPanelModel model, SelectionContext <DataModelItemBase> selectionContext)
     : base(selectionContext)
 {
     this.nodePath           = nodePath;
     this.schemaItem         = schemaItem;
     this.model              = model;
     this.doubleClickCommand = (ICommand) new DelegateCommand(new DelegateCommand.SimpleEventHandler(this.OnDoubleClicked));
     this.PropertyChanged   += new PropertyChangedEventHandler(this.DataSchemaItem_PropertyChanged);
 }
Example #2
0
 public ClrAssemblyValueConverterModel(SelectionContext <TypeItem> selectionContext, SceneViewModel viewModel, Assembly runtimeAssembly, Assembly referenceAssembly)
     : base(viewModel, runtimeAssembly, referenceAssembly)
 {
     this.selectionContext = selectionContext;
     this.LoadAssembly();
 }