AfxGetGrayBitmap
Copie une version grise d'une bitmap.
void AFXAPI AfxGetGrayBitmap(
const CBitmap &rSrc,
CBitmap *pDest,
COLORREF crBackground
);
Paramètres
rSrc
Le bitmap source.pDest
Le bitmap de destination.crBackground
La nouvelle couleur d'arrière-plan (généralement grise, par exemple COLOR_MENU).
Notes
Un bitmap copié avec AfxGetGrayBitmap aura l'apparence d'un contrôle désactivé.
Exemple
CBitmap bm;
bm.LoadBitmap(IDB_BITMAP1);
CBitmap bmGray;
AfxGetGrayBitmap(bm, &bmGray, GetSysColor(COLOR_MENU));
Configuration requise
En-tête : afxwin.h