3 implementations of ModelTreeManager
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemCollectionImpl.cs (1)
259ModelTreeManager IModelTreeItem.ModelTreeManager
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
347public ModelTreeManager ModelTreeManager
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
246ModelTreeManager IModelTreeItem.ModelTreeManager
25 references to ModelTreeManager
System.Activities.Presentation (25)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
157TypeConverter converter = new ModelTypeConverter(((IModelTreeItem)property.Parent).ModelTreeManager, propertyDescriptor.Converter);
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (3)
90this.Context = ((IModelTreeItem)reflectedObject).ModelTreeManager.Context; 91this.ModelTreeManager = ((IModelTreeItem)reflectedObject).ModelTreeManager; 699(instance.Content as IModelTreeItem).ModelTreeManager.AddToCurrentEditingScope(new FakeModelNotifyPropertyChange(instance.Content as IModelTreeItem, this.Name));
System.Activities.Presentation\System\Activities\Presentation\DragDropHelper.cs (1)
234return ((IModelTreeItem)droppedModelItem).ModelTreeManager.Context.Equals(context);
System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelPropertyImpl.cs (3)
94this.parentModelTreeItem.ModelTreeManager.AddToCurrentEditingScope(new FakeModelNotifyPropertyChange(this.parentModelTreeItem, this.Name)); 116wrappedValue = new FakeModelItemImpl(this.parentModelTreeItem.ModelTreeManager, this.PropertyType, value, (FakeModelItemImpl)this.Parent); 168EditingContext context = this.modelTreeItem.ModelTreeManager.Context;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (3)
30if (null != modelTreeItem && null != modelTreeItem.ModelTreeManager) 32result = modelTreeItem.ModelTreeManager.Context; 704if (!IsRootedAt(itemToFocus, modelTreeItem.ModelTreeManager.Root) && !(itemToFocus is FakeModelItemImpl))
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemHelper.cs (1)
34return ((IModelTreeItem)modelItem).ModelTreeManager.CanCreateImmediateEditingScope();
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyDescriptor.cs (1)
41this.converter = new ModelTypeConverter(propertyParent.ModelTreeManager, baseConverter);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyImpl.cs (7)
77return new ModelTypeConverter(((IModelTreeItem)this.Parent).ModelTreeManager, propertyDescriptor.Converter); 172return ((IModelTreeItem)parent).ModelTreeManager.GetValue(this); 188((IModelTreeItem)parent).ModelTreeManager.ClearValue(this); 194return ((IModelTreeItem)parent).ModelTreeManager.SetValue(this, value); 220((IModelTreeItem)parent).ModelTreeManager.AddToCurrentEditingScope(change); 235parent.ModelTreeManager.OnPropertyEdgeRemoved(this.Name, this.Parent, oldValueModelItem); 241parent.ModelTreeManager.OnPropertyEdgeAdded(this.Name, this.Parent, newValueModelItem);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
41return GetConverter(item.ModelTreeManager, item.ModelItem);
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
31EditingContext ctx = ((IModelTreeItem)item).ModelTreeManager.Context;
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
2014ModelTreeManager treeManager = ((IModelTreeItem)modelItem).ModelTreeManager;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (1)
370this.context = modelTreeItem.ModelTreeManager.Context;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (1)
170this.context = modelTreeItem.ModelTreeManager.Context;