我想在系统托盘中显示一个图标。
看起来应该很简单,但我不知道如何创建HICON
和绘制它!所有“兼容的位图”、“兼容的 DC”等东西真的让我很困惑。
如何绘制图标?
我想在系统托盘中显示一个图标。
看起来应该很简单,但我不知道如何创建HICON
和绘制它!所有“兼容的位图”、“兼容的 DC”等东西真的让我很困惑。
如何绘制图标?
无需过多介绍,您可以使用以下 C++ 类。
它使用Windows 模板库,但将其转换为纯 C 应该非常简单。
using namespace WTL;
class CIconDC : public CDC
{
public:
HBITMAP hBmpOld;
CIconDC(int cx = GetSystemMetrics(SM_CXSMICON), // width
int cy = GetSystemMetrics(SM_CYSMICON), // height
HDC templateDC = CClientDC(NULL)) // automatically calls ReleaseDC
{
this->CreateCompatibleDC(templateDC);
hBmpOld = this->SelectBitmap(CreateCompatibleBitmap(templateDC, cx, cy));
}
~CIconDC() { DeleteObject(this->SelectBitmap(hBmpOld)); }
HICON CreateIcon() const
{
// temporarily swap bitmaps to get handle of current bitmap
HBITMAP hBitmap = this->GetCurrentBitmap();
ICONINFO ii = { TRUE, 0, 0, hBitmap, hBitmap };
return CreateIconIndirect(&ii);
}
};
使用该类非常简单:
CIconDC dc;
dc.LineTo(10, 10); // for example -- you can do whatever you want with the DC
CIcon hIcon = dc.CreateIcon(); // converted to an HICON!