CButton::GetBitmap

调用该成员函数获取位图的句柄,以前设置与 SetBitmap,与按钮。

HBITMAP GetBitmap( ) const;

返回值

向位图的句柄。 NULL,如果位图以前未指定。

示例

CButton myBitmapButton;

// Create a bitmap button.
myBitmapButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_BITMAP, 
   CRect(10,10,60,50), pParentWnd, 1);

// If no bitmap is defined for the button, define the bitmap to the
// system close bitmap.
if (myBitmapButton.GetBitmap() == NULL)
   myBitmapButton.SetBitmap(::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CLOSE)));

要求

Header: afxwin.h

请参见

参考

CButton选件类

层次结构图

CButton::SetBitmap

CBitmapButton::LoadBitmaps

Bitmaps