24 instantiations of ConnectorHitTestInfo
System.Workflow.Activities (2)
Designers\EventHandlersDesigner.cs (2)
69
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, 0).SelectableObject;
85
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, GetConnectors().GetLength(0) - 1).SelectableObject;
System.Workflow.ComponentModel (22)
AuthoringOM\Behaviors\ExceptionHandlersDesigner.cs (2)
75
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, 0).SelectableObject;
91
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, GetConnectors().GetLength(0) - 1).SelectableObject;
AuthoringOM\Design\ActivityPreviewDesigner.cs (1)
381
hitInfo = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, 0);
AuthoringOM\Design\CommandSet.cs (2)
456
hitInfo = new
ConnectorHitTestInfo
(parentDesigner, HitTestLocations.Designer, parentActivity.Activities.IndexOf(selectedActivity) + 1);
924
hitInfo = new
ConnectorHitTestInfo
(parentDesigner, HitTestLocations.Designer, parentActivity.Activities.IndexOf(selectedActivity) + 1);
AuthoringOM\Design\FreeFormDesigner.cs (4)
572
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer | HitTestLocations.Connector, i);
883
CompositeActivityDesigner.InsertActivities(this, new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, ((CompositeActivity)Activity).Activities.Count), activitiesToInsert.AsReadOnly(), SR.GetString(SR.DragDropActivities));
1020
nextSelectableObject = new
ConnectorHitTestInfo
(freeformDesigner, HitTestLocations.Connector | HitTestLocations.Designer, (connectorIndex > 0) ? connectorIndex - 1 : connectorIndex);
1198
parentDesigner.MoveActivities(new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, moveIndex), new List<Activity>(new Activity[] { childDesigner.Activity }).AsReadOnly());
AuthoringOM\Design\ParallelActivityDesigner.cs (1)
472
CompositeActivityDesigner.InsertActivities(this, new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, compositeActivity.Activities.Count), new List<Activity>(new Activity[] { branchActivity }).AsReadOnly(), DR.GetString(DR.AddingBranch, branchActivity.GetType().Name));
AuthoringOM\Design\SequenceDesignerAccessibleObject.cs (1)
100
this.connectorHitInfo = new
ConnectorHitTestInfo
(activityDesigner, HitTestLocations.Designer, connectorIndex);
AuthoringOM\Design\SequentialActivityDesigner.cs (7)
101
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, 0);
117
return new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, connectors.Length - 1);
312
hitInfo = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, 0);
322
hitInfo = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, i);
357
nextObject = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, currentIndex + 1);
373
nextObject = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, currentIndex);
524
if (logicalViewPort.IntersectsWith(connectors[i]) && i != CurrentDropTarget && dragDropManager.IsValidDropContext(new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, i)))
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (4)
523
CompositeActivityDesigner.InsertActivities(this, new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, CurrentDropTarget), e.Activities, SR.GetString(SR.DragDropActivities));
720
if (dropIndex >= 0 && !CanInsertActivities(new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, dropIndex), e.Activities))
726
ConnectorHitTestInfo moveLocation = new
ConnectorHitTestInfo
(this, HitTestLocations.Designer, dropIndex);
818
return new
ConnectorHitTestInfo
(this, location.HitLocation, lockedActivityOffset + location.MapToIndex());
27 references to ConnectorHitTestInfo
System.Workflow.ComponentModel (27)
AuthoringOM\Design\Connector.cs (2)
598
ConnectorHitTestInfo
connectorHitTestInfo = selectedObject as
ConnectorHitTestInfo
;
AuthoringOM\Design\DesignerHelpers.cs (2)
1792
ConnectorHitTestInfo
connector = obj as
ConnectorHitTestInfo
;
AuthoringOM\Design\DesignerInterfaces.cs (2)
745
ConnectorHitTestInfo
destinationConnector = obj as
ConnectorHitTestInfo
;
AuthoringOM\Design\FreeFormDesigner.cs (4)
372
ConnectorHitTestInfo
connectorHitInfo = selectedObject as
ConnectorHitTestInfo
;
1005
ConnectorHitTestInfo
connector = component as
ConnectorHitTestInfo
;
AuthoringOM\Design\MessageFilters\WindowManager.cs (4)
274
List<
ConnectorHitTestInfo
> connectors = new List<
ConnectorHitTestInfo
>();
277
ConnectorHitTestInfo
connector = component as
ConnectorHitTestInfo
;
AuthoringOM\Design\SequenceDesignerAccessibleObject.cs (6)
82
if (nextSelectableObj is
ConnectorHitTestInfo
)
83
return GetChild(((
ConnectorHitTestInfo
)nextSelectableObj).MapToIndex());
93
private
ConnectorHitTestInfo
connectorHitInfo;
211
if (nextSelectableObj is
ConnectorHitTestInfo
)
213
ConnectorHitTestInfo
nextConnector = nextSelectableObj as
ConnectorHitTestInfo
;
AuthoringOM\Design\SequentialActivityDesigner.cs (6)
271
ConnectorHitTestInfo
connectorHitTestInfo = obj as
ConnectorHitTestInfo
;
346
if (obj is
ConnectorHitTestInfo
)
348
int currentIndex = ((
ConnectorHitTestInfo
)obj).MapToIndex();
362
if (obj is
ConnectorHitTestInfo
)
364
int currentIndex = ((
ConnectorHitTestInfo
)obj).MapToIndex();
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
726
ConnectorHitTestInfo
moveLocation = new ConnectorHitTestInfo(this, HitTestLocations.Designer, dropIndex);