拦截处理ToolBar的WM_ERASEBKGND消息
自己绘制背景
这一类的程序 原理简单、代码量大,除非非常闲,别人一般不会写的WM_ERASEBKGND
An application sends the WM_ERASEBKGND message when the window background must be erased (for example, when a window is resized). The message is sent to prepare an invalidated portion of a window for painting. WM_ERASEBKGND 
hdc = (HDC) wParam; // handle to device context 
 
Parameters
hdc 
Value of wParam. Handle to the device context. 
Return Values
An application should return nonzero if it erases the background; otherwise, it should return zero. Res
The DefWindowProc function erases the background by using the class background brush specified by the hbrBackground member of the WNDCLASS structure. If hbrBackground is NULL, the application should process the WM_ERASEBKGND message and erase the background. An application should return nonzero in response to WM_ERASEBKGND if it processes the message and erases the background; this indicates that no further erasing is required. If the application returns zero, the window will remain ed for erasing. (Typically, this indicates that the fErase member of the PAINTSTRUCT structure will be TRUE.) QuickInfo
  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Requires version 1.0 or later.
  Header: Declared in winuser.h.