AfxDrawGrayBitmap
繪製點陣圖的灰色版本。
void AFXAPI AfxDrawGrayBitmap(
CDC *pDC,
int x,
int y,
const CBitmap &rSrc,
COLORREF crBackground
);
參數
pDC
對目的 DC 的點。x
目標 X 座標。y
目標 y 座標。rSrc
來源點陣圖。crBackground
新的背景色彩 (通常是灰色,例如 COLOR_MENU)。
備註
點陣圖繪畫與 AfxDrawGrayBitmap 將會停用控制項的外觀。
範例
void CDCView::DrawGrayBitmap(CDC* pDC)
{
CBitmap bm;
bm.LoadBitmap(IDB_BITMAP1);
AfxDrawGrayBitmap(pDC, 10, 50, bm, GetSysColor(COLOR_MENU));
}
需求
標題: afxwin.h