Call this member function to associate a new bitmap with the button.
HBITMAP SetBitmap(
HBITMAP hBitmap
);
Parameters
- hBitmap
-
The handle of a bitmap.
The handle of a bitmap previously associated with the button.
The bitmap will be automatically placed on the face of the button, centered by default. If the bitmap is too large for the button, it will be clipped on either side. You can choose other alignment options, including the following:
-
BS_TOP
-
BS_LEFT
-
BS_RIGHT
-
BS_CENTER
-
BS_BOTTOM
-
BS_VCENTER
Unlike CBitmapButton, which uses four bitmaps per button, SetBitmap uses only one bitmap per the button. When the button is pressed, the bitmap appears to shift down and to the right.
CButton myButton;
// Create a bitmap button.
myButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_BITMAP,
CRect(10,10,60,50), pParentWnd, 1);
// Set the bitmap of the button to be the system check mark bitmap.
myButton.SetBitmap( ::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CHECK)) );
Reference
CButton Class
Hierarchy Chart
CButton::GetBitmap
CBitmapButton Class
CBitmapButton::LoadBitmaps
Bitmaps
Other Resources
CButton Members