1 override of HitTest
System.Workflow.ComponentModel (1)
AuthoringOM\Design\CompositeActivityDesigner.cs (1)
1076public override HitTestInfo HitTest(Point point)
5 references to HitTest
System.Workflow.ComponentModel (5)
AuthoringOM\Design\CompositeActivityDesigner.cs (2)
1093hitInfo = activityDesigner.HitTest(point); 1102hitInfo = base.HitTest(point);
AuthoringOM\Design\Connector.cs (2)
1558ActivityDesigner sourceDesigner = (sourceConnectionPoint != null) ? sourceConnectionPoint.AssociatedDesigner : rootDesigner.HitTest(sourcePoint).AssociatedDesigner; 1562ActivityDesigner targetDesigner = (targetConnectionPoint != null) ? targetConnectionPoint.AssociatedDesigner : rootDesigner.HitTest(targetPoint).AssociatedDesigner;
AuthoringOM\Design\WorkflowView.cs (1)
2188HitTestInfo hitTestInfo = this.workflowView.RootDesigner.HitTest(logicalPoint);