1 out of 1 rated this helpful - Rate this topic

Glyph.Paint Method

Note: This method is new in the .NET Framework version 2.0.

Provides paint logic.

Namespace: System.Windows.Forms.Design.Behavior
Assembly: System.Design (in system.design.dll)

public abstract void Paint (
	PaintEventArgs pe
)
public abstract void Paint (
	PaintEventArgs pe
)
public abstract function Paint (
	pe : PaintEventArgs
)

Parameters

pe

A PaintEventArgs that contains the event data.

The Paint method is an abstract method that forces Glyph implementations to provide paint logic. The pe parameter contains the Graphics related to the adorner window of the BehaviorService.

The following example demonstrates how to override the Paint to draw a glyph. This code example is part of a larger example provided for the BehaviorService class.

public override void Paint(PaintEventArgs pe)
{
    // Draw our glyph. It is simply a blue ellipse.
    pe.Graphics.FillEllipse(Brushes.Blue, Bounds);
}

  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see .

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.