CButton::SetBitmap
呼叫此成員函式使新的點陣圖按鈕使用。
HBITMAP SetBitmap(
HBITMAP hBitmap
);
參數
- hBitmap
點陣圖的控制代碼。
傳回值
點陣圖的控制代碼之前與按鈕。
備註
預設點陣圖按鈕的表面會自動放置,置中。 如果點陣圖為按鈕太大,則對兩端都會裁剪。 您可以選擇其他對齊選項,包括下列項目:
BS_TOP
BS_LEFT
BS_RIGHT
BS_CENTER
BS_BOTTOM
BS_VCENTER
不同於 CBitmapButton,使用每個按鈕四個點陣圖, SetBitmap 只使用每個這個按鈕建立點陣圖。 當按下時,點陣圖會移出往右下方。
當您完成使用後,您必須負責釋放點陣圖。
範例
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