10 references to GetParentDesigner
System.Workflow.ComponentModel (10)
AuthoringOM\Design\CommandSet.cs (2)
428compositeDesigner = ActivityDesigner.GetParentDesigner(selectedObject); 886compositeDesigner = ActivityDesigner.GetParentDesigner(selectedObject);
AuthoringOM\Design\CompositeActivityDesigner.cs (4)
1371CompositeActivityDesigner parentDesigner = ActivityDesigner.GetParentDesigner(selectedObject); 1391CompositeActivityDesigner parentDesigner = ActivityDesigner.GetParentDesigner(selectedObject); 1424CompositeActivityDesigner parentDesigner = ActivityDesigner.GetParentDesigner(selectedObject); 1439CompositeActivityDesigner parentDesigner = ActivityDesigner.GetParentDesigner(selectedObject);
AuthoringOM\Design\FreeFormDesigner.cs (1)
629ActivityDesigner activityDesigner = (current is Activity) ? ActivityDesigner.GetDesigner(current as Activity) : ActivityDesigner.GetParentDesigner(current);
AuthoringOM\Design\MessageFilters\FreeFormDragDropManager.cs (1)
104showMoveCursor |= (MessageHitTestContext != null && MessageHitTestContext.AssociatedDesigner != null && ActivityDesigner.GetParentDesigner(MessageHitTestContext.AssociatedDesigner.Activity) is FreeformActivityDesigner && (MessageHitTestContext.HitLocation & HitTestLocations.ActionArea) == 0);
AuthoringOM\Design\MessageFilters\WindowManager.cs (2)
243CompositeActivityDesigner parentDesigner = ActivityDesigner.GetParentDesigner(selectionService.PrimarySelection); 405designerWithFocus = ActivityDesigner.GetParentDesigner(primarySelection);