21 writes to ConnectorEndCap
System.Workflow.Activities (15)
Designers\CAGDesigner.cs (1)
63this.ConnectorEndCap = LineAnchor.None;
Designers\ConditionalDesigner.cs (1)
145this.ConnectorEndCap = LineAnchor.None;
Designers\ConditionedDesigner.cs (1)
42this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\EventDrivenDesigner.cs (1)
62this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\EventHandlersDesigner.cs (1)
103this.ConnectorEndCap = LineAnchor.None;
Designers\ListenDesigner.cs (1)
102this.ConnectorEndCap = LineAnchor.None;
Designers\ParallelDesigner.cs (1)
72this.ConnectorEndCap = LineAnchor.None;
Designers\SequenceDesigner.cs (1)
30this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\ServiceDesigner.cs (1)
106this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\StateDesigner.cs (1)
2796this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\StateFinalizationDesigner.cs (1)
69this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\StateInitializationDesigner.cs (1)
69this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\StateMachineWorkflowDesigner.cs (1)
131this.ConnectorEndCap = LineAnchor.ArrowAnchor;
Designers\WhileDesigner.cs (1)
114this.ConnectorEndCap = LineAnchor.ArrowAnchor;
EventHandlingScope.cs (1)
302this.ConnectorEndCap = LineAnchor.ArrowAnchor;
System.Workflow.ComponentModel (6)
AuthoringOM\Behaviors\CancellationHandlerDesigner.cs (1)
65this.ConnectorEndCap = LineAnchor.ArrowAnchor;
AuthoringOM\Behaviors\CompensationDesigner.cs (1)
71this.ConnectorEndCap = LineAnchor.ArrowAnchor;
AuthoringOM\Behaviors\ExceptionHandlerDesigner.cs (1)
91this.ConnectorEndCap = LineAnchor.ArrowAnchor;
AuthoringOM\Behaviors\ExceptionHandlersDesigner.cs (1)
109this.ConnectorEndCap = LineAnchor.None;
AuthoringOM\Design\WorkflowInlining.cs (1)
494this.ConnectorEndCap = LineAnchor.ArrowAnchor;
AuthoringOM\SequenceDesigner.cs (1)
31this.ConnectorEndCap = LineAnchor.ArrowAnchor;
10 references to ConnectorEndCap
System.Workflow.Activities (2)
Designers\StateDesignerConnector.cs (2)
185theme.ConnectorEndCap); 220theme.ConnectorEndCap);
System.Workflow.ComponentModel (8)
AuthoringOM\Design\Connector.cs (3)
445ActivityDesignerPaint.DrawConnectors(e.Graphics, e.DesignerTheme.ForegroundPen, new List<Point>(ConnectorSegments).ToArray(), arrowCapSize, maxCapSize, theme.ConnectorStartCap, theme.ConnectorEndCap); 459ActivityDesignerPaint.DrawConnectors(e.Graphics, lineSelectionPen, new List<Point>(ConnectorSegments).ToArray(), arrowCapSize, maxCapSize, theme.ConnectorStartCap, theme.ConnectorEndCap); 487ActivityDesignerPaint.DrawConnectors(e.Graphics, editableConnectorPen, segments, arrowCapSize, maxCapSize, theme.ConnectorStartCap, theme.ConnectorEndCap);
AuthoringOM\Design\ParallelActivityDesigner.cs (3)
389DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, connectingLine, compositeDesignerTheme.ConnectorStartCap, compositeDesignerTheme.ConnectorEndCap); 396DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, connectingLine, compositeDesignerTheme.ConnectorStartCap, compositeDesignerTheme.ConnectorEndCap); 424DrawConnectors(e.Graphics, e.AmbientTheme.DropIndicatorPen, new Point[] { new Point(dropTargetRectangle.Left + dropTargetRectangle.Width / 2, dropTargetRectangle.Top + 2), new Point(dropTargetRectangle.Left + dropTargetRectangle.Width / 2, dropTargetRectangle.Bottom - 2) }, compositeDesignerTheme.ConnectorStartCap, compositeDesignerTheme.ConnectorEndCap);
AuthoringOM\Design\SequentialActivityDesigner.cs (2)
412DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, new Point[] { new Point(connectors[0].X + connectors[0].Width / 2, helpTextRectangle.Bottom + 2), new Point(connectors[0].X + connectors[0].Width / 2, connectors[0].Bottom - 2) }, LineAnchor.None, compositeDesignerTheme.ConnectorEndCap); 424LineAnchor endCap = (i == 0 || (i == connectors.Length - 1 && connectors.Length > 2)) ? LineAnchor.None : compositeDesignerTheme.ConnectorEndCap;