AuthoringOM\Design\FreeFormDesigner.cs (8)
561return new HitTestInfo(this, HitTestLocations.Designer);
566(hitInfo.HitLocation == HitTestLocations.None || hitInfo.AssociatedDesigner == this || ShowConnectorsInForeground))
572return new ConnectorHitTestInfo(this, HitTestLocations.Designer | HitTestLocations.Connector, i);
883CompositeActivityDesigner.InsertActivities(this, new ConnectorHitTestInfo(this, HitTestLocations.Designer, ((CompositeActivity)Activity).Activities.Count), activitiesToInsert.AsReadOnly(), SR.GetString(SR.DragDropActivities));
1020nextSelectableObject = new ConnectorHitTestInfo(freeformDesigner, HitTestLocations.Connector | HitTestLocations.Designer, (connectorIndex > 0) ? connectorIndex - 1 : connectorIndex);
1198parentDesigner.MoveActivities(new ConnectorHitTestInfo(this, HitTestLocations.Designer, moveIndex), new List<Activity>(new Activity[] { childDesigner.Activity }).AsReadOnly());
AuthoringOM\Design\SequentialActivityDesigner.cs (8)
101return new ConnectorHitTestInfo(this, HitTestLocations.Designer, 0);
117return new ConnectorHitTestInfo(this, HitTestLocations.Designer, connectors.Length - 1);
312hitInfo = new ConnectorHitTestInfo(this, HitTestLocations.Designer, 0);
322hitInfo = new ConnectorHitTestInfo(this, HitTestLocations.Designer, i);
327if (hitInfo.HitLocation == HitTestLocations.None)
357nextObject = new ConnectorHitTestInfo(this, HitTestLocations.Designer, currentIndex + 1);
373nextObject = new ConnectorHitTestInfo(this, HitTestLocations.Designer, currentIndex);
524if (logicalViewPort.IntersectsWith(connectors[i]) && i != CurrentDropTarget && dragDropManager.IsValidDropContext(new ConnectorHitTestInfo(this, HitTestLocations.Designer, i)))
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (3)
523CompositeActivityDesigner.InsertActivities(this, new ConnectorHitTestInfo(this, HitTestLocations.Designer, CurrentDropTarget), e.Activities, SR.GetString(SR.DragDropActivities));
720if (dropIndex >= 0 && !CanInsertActivities(new ConnectorHitTestInfo(this, HitTestLocations.Designer, dropIndex), e.Activities))
726ConnectorHitTestInfo moveLocation = new ConnectorHitTestInfo(this, HitTestLocations.Designer, dropIndex);