AfxDrawGrayBitmap
Zeichnet eine graue Version einer Bitmap.
void AFXAPI AfxDrawGrayBitmap(
CDC *pDC,
int x,
int y,
const CBitmap &rSrc,
COLORREF crBackground
);
Parameter
pDC
Punkte in das Ziel DC.x
Die Ziel- x-koordinate.y
Die Ziel- y-koordinate.rSrc
Die Quellbitmap.crBackground
Die neue Hintergrundfarbe (in der Regel grau, wie COLOR_MENU).
Hinweise
Eine Bitmap, die mit AfxDrawGrayBitmap gezeichnet wird, weist die Darstellung eines Steuerelements Behindert.
Beispiel
void CDCView::DrawGrayBitmap(CDC* pDC)
{
CBitmap bm;
bm.LoadBitmap(IDB_BITMAP1);
AfxDrawGrayBitmap(pDC, 10, 50, bm, GetSysColor(COLOR_MENU));
}
Anforderungen
Header: afxwin.h