次の方法で共有


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

参照

関連項目

AfxGetGrayBitmap

AfxDrawDitheredBitmap

概念

MFC マクロとグローバル

その他の技術情報

淡色表示 (灰色) ビットマップ関数とディザリングされたビットマップ関数