wx.EraseEvent

Inheritance diagram for wx.EraseEvent:



Description

An erase event is sent when a window’s background needs to be repainted.

On some platforms, such as GTK+, this event is simulated (simply generated just before the paint event) and may cause flicker. It is therefore recommended that you set the text background colour explicitly in order to prevent flicker.

The default background colour under GTK+ is grey.

To intercept this event, use the wx.EVT_ERASE_BACKGROUND macro in an event table definition.

You must call GetDC and use the returned device context if it is not None. If it is None, create your own temporary wx.ClientDC object.

Derived From

Event Handling

Event Name Description
wx.EVT_ERASE_BACKGROUND(func) Process a wx.wxEVT_ERASE_BACKGROUND event.

Remarks

Use the device context returned by GetDC to draw on, don’t create a wx.PaintDC in the event handler.

Methods Summary

Properties Summary

Class API

Methods

__init__(Id=0, dc=None)

Constructor.

Parameters:


Returns:

wx.EraseEvent


GetDC()

Returns the device context associated with the erase event to draw on.


Returns:

wx.DC


Properties

DC
See GetDC