Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
PaintBackground Event
See Also 
Leadtools.WinForms Namespace > RasterImageList Class : PaintBackground Event




Occurs when the background of the control is redrawn.

Syntax

Visual Basic (Declaration) 
Public Event PaintBackground() As PaintEventHandler
Visual Basic (Usage)Copy Code
Dim instance As RasterImageList
Dim handler As PaintEventHandler
 
AddHandler instance.PaintBackground, handler
C# 
public event PaintEventHandler PaintBackground()
Managed Extensions for C++ 
public: __event PaintEventHandler PaintBackground();
C++/CLI 
public:
event PaintEventHandler PaintBackground();

Example

For an example, refer to RasterImageList.

Remarks

This event is fired from within the Paint event of this control.

The event handler receives an argument of type PaintEventArgs containing data related to this event. The following PaintEventArgs properties provide information specific to this event.
PropertyDescription
ClipRectangleGets the rectangle in which to paint.
GraphicsGets the graphics used to paint.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also