- @li @b wxScreenDC. Use this to paint on the screen, as opposed to an individual window.
- @li @b wxClientDC. Use this to paint on the client area of window (the part without
- borders and other decorations), but do not use it from within an #wxPaintEvent.
- @li @b wxPaintDC. Use this to paint on the client area of a window, but @e only from
- within a #wxPaintEvent.
- @li @b wxWindowDC. Use this to paint on the whole area of a window, including decorations.
- This may not be available on non-Windows platforms.
+To use a client, paint or window device context, create an object on the stack with
+the window as argument, for example: