ActivityDesigner.OnPaint Method
.NET Framework 3.0
Draws the visual representation of the activity at design time.
Namespace: System.Workflow.ComponentModel.Design
Assembly: System.Workflow.ComponentModel (in system.workflow.componentmodel.dll)
Assembly: System.Workflow.ComponentModel (in system.workflow.componentmodel.dll)
'Declaration Protected Overridable Sub OnPaint ( _ e As ActivityDesignerPaintEventArgs _ ) 'Usage Dim e As ActivityDesignerPaintEventArgs Me.OnPaint(e)
protected void OnPaint ( ActivityDesignerPaintEventArgs e )
protected function OnPaint ( e : ActivityDesignerPaintEventArgs )
Not applicable.
Parameters
- e
An ActivityDesignerPaintEventArgs that contains the event data.
The following example shows a custom ActivityDesigner that delegates the painting responsibility to the base class or draws itself based on a Boolean value. If useBasePaint is false, the custom activity will draw itself using the various methods of the ActivityDesignerPaint class.
private bool expanded = true; private bool useBasePaint = false; public bool UseBasePaint { get { return this.useBasePaint; } set { this.useBasePaint = value; } } public bool Expanded { get { return this.expanded; } set { this.expanded = value; } } protected override void OnPaint(ActivityDesignerPaintEventArgs e) { if (this.UseBasePaint == true) { base.OnPaint(e); return; } DrawCustomActivity(e); } private void DrawCustomActivity(ActivityDesignerPaintEventArgs e) { Graphics graphics = e.Graphics; CompositeDesignerTheme compositeDesignerTheme = (CompositeDesignerTheme)e.DesignerTheme; ActivityDesignerPaint.DrawRoundedRectangle(graphics, compositeDesignerTheme.BorderPen, this.Bounds, compositeDesignerTheme.BorderWidth); string text = this.Text; Rectangle textRectangle = this.TextRectangle; if (!String.IsNullOrEmpty(text) && !textRectangle.IsEmpty) { ActivityDesignerPaint.DrawText(graphics, compositeDesignerTheme.Font, text, textRectangle, StringAlignment.Center, e.AmbientTheme.TextQuality, compositeDesignerTheme.ForegroundBrush); } System.Drawing.Image image = this.Image; Rectangle imageRectangle = this.ImageRectangle; if (image != null && !imageRectangle.IsEmpty) { ActivityDesignerPaint.DrawImage(graphics, image, imageRectangle, DesignerContentAlignment.Fill); } ActivityDesignerPaint.DrawExpandButton(graphics, new Rectangle(this.Location.X, this.Location.Y, 10, 10), this.Expanded, compositeDesignerTheme); }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: