.. include:: headings.inc .. _EraseEvent: ========================================================================================================================================== |phoenix_title| **EraseEvent** ========================================================================================================================================== 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 ``EVT_ERASE_BACKGROUND`` macro in an event table definition. You must use the device context returned by :meth:`~EraseEvent.GetDC` to draw on, don't create a :ref:`PaintDC` in the event handler. .. _EraseEvent-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`EraseEvent` parameter. - EVT_ERASE_BACKGROUND: Process a ``wxEVT_ERASE_BACKGROUND`` event. .. seealso:: :ref:`Events and Event Handling ` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **EraseEvent** .. raw:: html

Inheritance diagram of EraseEvent

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~EraseEvent.__init__` Constructor. :meth:`~EraseEvent.GetDC` Returns the device context associated with the erase event to draw on. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~EraseEvent.DC` See :meth:`~EraseEvent.GetDC` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: EraseEvent(Event) An erase event is sent when a window's background needs to be repainted. **Possible constructors**:: EraseEvent(id=0, dc=None) .. method:: __init__(self, id=0, dc=None) Constructor. :param `id`: :type `id`: int :param `dc`: :type `dc`: DC .. method:: GetDC(self) Returns the device context associated with the erase event to draw on. The returned pointer is never ``None``. :rtype: :ref:`DC` .. attribute:: DC See :meth:`~EraseEvent.GetDC`