7 instantiations of ActivityDesignerPaintEventArgs
System.Workflow.ComponentModel (6)
AuthoringOM\Design\ActivityDesigner.cs (2)
1078designer.OnPaint(new ActivityDesignerPaintEventArgs(graphics, designer.Bounds, viewPort, designer.DesignerTheme)); 2981ActivityDesignerPaintEventArgs eventArgs = new ActivityDesignerPaintEventArgs(e.Graphics, bounds, viewPort, DesignerTheme);
AuthoringOM\Design\Glyphs\ConnectionPointGlyph.cs (1)
29ActivityDesignerPaintEventArgs e = new ActivityDesignerPaintEventArgs(graphics, clipRectangle, viewPort, designer.DesignerTheme);
AuthoringOM\Design\MessageFilters\ConnectionManager.cs (3)
238connector.OnPaintSelected(new ActivityDesignerPaintEventArgs(e.Graphics, connector.ParentDesigner.Bounds, viewPort, connector.ParentDesigner.DesignerTheme), (selectedComponents == selectionService.PrimarySelection), new Point[] { }); 248editableConnector.OnPaint(new ActivityDesignerPaintEventArgs(e.Graphics, selectedConnector.ParentDesigner.Bounds, viewPort, selectedConnector.ParentDesigner.DesignerTheme), true, true); 255this.connectorEditor.OnPaint(new ActivityDesignerPaintEventArgs(e.Graphics, designer.Bounds, viewPort, designer.DesignerTheme), false, false);
System.WorkflowServices (1)
System\Workflow\ComponentModel\Design\HighlightOverlayGlyph.cs (1)
59DesignerPainter.PaintDesigner(highlightedDesigner, new ActivityDesignerPaintEventArgs(graphics, designer.Bounds, designer.Bounds, null));
38 references to ActivityDesignerPaintEventArgs
System.Workflow.Activities (9)
Designers\ConditionalDesigner.cs (1)
81protected override void OnPaint(ActivityDesignerPaintEventArgs e)
Designers\ListenDesigner.cs (1)
61protected override void OnPaint(ActivityDesignerPaintEventArgs e)
Designers\SetStateDesigner.cs (1)
166protected override void OnPaint(ActivityDesignerPaintEventArgs e)
Designers\StateDesigner.cs (1)
1560protected override void OnPaint(ActivityDesignerPaintEventArgs e)
Designers\StateDesignerConnector.cs (4)
138protected override void OnPaintEdited(ActivityDesignerPaintEventArgs e, Point[] segments, Point[] segmentEditPoints) 166protected override void OnPaintSelected(ActivityDesignerPaintEventArgs e, bool primarySelection, Point[] segmentEditPoints) 203protected override void OnPaint(ActivityDesignerPaintEventArgs e) 224private void PaintEditPoints(ActivityDesignerPaintEventArgs e, Point point, bool drawMidSegmentEditPoint)
Designers\WhileDesigner.cs (1)
30protected override void OnPaint(ActivityDesignerPaintEventArgs e)
System.Workflow.ComponentModel (25)
AuthoringOM\Design\ActivityDesigner.cs (2)
1667protected virtual void OnPaint(ActivityDesignerPaintEventArgs e) 2981ActivityDesignerPaintEventArgs eventArgs = new ActivityDesignerPaintEventArgs(e.Graphics, bounds, viewPort, DesignerTheme);
AuthoringOM\Design\ActivityPreviewDesigner.cs (1)
521protected override void OnPaint(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\CompositeActivityDesigner.cs (3)
1225protected override void OnPaint(ActivityDesignerPaintEventArgs e) 1340protected void PaintContainedDesigners(ActivityDesignerPaintEventArgs e) 1463internal virtual void OnPaintContainedDesigners(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\Connector.cs (7)
166public void OnPaint(ActivityDesignerPaintEventArgs e, bool drawHighlighted) 171internal static void Draw(ActivityDesignerPaintEventArgs e, Rectangle bounds) 438protected internal virtual void OnPaint(ActivityDesignerPaintEventArgs e) 449protected internal virtual void OnPaintSelected(ActivityDesignerPaintEventArgs e, bool primarySelection, Point[] segmentEditPoints) 476protected internal virtual void OnPaintEdited(ActivityDesignerPaintEventArgs e, Point[] segments, Point[] segmentEditPoints) 513private void PaintEditPoints(ActivityDesignerPaintEventArgs e, Point point, bool drawMidSegmentEditPoint) 991public void OnPaint(ActivityDesignerPaintEventArgs e, bool drawSelected, bool drawPrimarySelection)
AuthoringOM\Design\FreeFormDesigner.cs (1)
1068internal override void OnPaintContainedDesigners(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\Glyphs\ConnectionPointGlyph.cs (1)
29ActivityDesignerPaintEventArgs e = new ActivityDesignerPaintEventArgs(graphics, clipRectangle, viewPort, designer.DesignerTheme);
AuthoringOM\Design\MessageFilters\GlyphManager.cs (1)
249internal void DrawDesignerGlyphs(ActivityDesignerPaintEventArgs e, ActivityDesigner designer)
AuthoringOM\Design\ParallelActivityDesigner.cs (3)
192protected override void OnPaint(ActivityDesignerPaintEventArgs e) 329private void DrawParallelConnectors(ActivityDesignerPaintEventArgs e) 400private void DrawParallelDropTargets(ActivityDesignerPaintEventArgs e, int index)
AuthoringOM\Design\SequentialActivityDesigner.cs (1)
397protected override void OnPaint(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (1)
204public virtual void OnPaint(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (3)
291protected override void OnPaint(ActivityDesignerPaintEventArgs e) 378public override void OnPaint(ActivityDesignerPaintEventArgs e) 463public override void OnPaint(ActivityDesignerPaintEventArgs e)
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
660internal override void OnPaintContainedDesigners(ActivityDesignerPaintEventArgs e)
System.WorkflowServices (4)
System\Workflow\Activities\ReceiveActivityDesigner.cs (1)
181protected override void OnPaint(ActivityDesignerPaintEventArgs e)
System\Workflow\Activities\SendActivityDesigner.cs (1)
132protected override void OnPaint(ActivityDesignerPaintEventArgs e)
System\Workflow\ComponentModel\Design\DesignerPainter.cs (2)
38public static void PaintDesigner(ActivityDesigner activityDesigner, ActivityDesignerPaintEventArgs eventArgs) 123private static void PaintDesignerInternal(ActivityDesigner activityDesigner, ActivityDesignerPaintEventArgs eventArgs)