摘要: Gdiplus::FontFamily fontfm(_T("微软雅黑")); Gdiplus::Font font(&fontfm, 24, Gdiplus::FontStyleBold, Gdiplus::UnitPixel); /* 参数1:FontFamily family 字体,如我们常见 阅读全文
posted @ 2023-05-12 20:52 天子骄龙 阅读(483) 评论(0) 推荐(0)
摘要: HDC hdc = ::GetDC(m_hWnd); Graphics graphics(hdc); SolidBrush brush(Color(150,0,0,255)); graphics.FillEllipse(&brush,10,10,200,100);//填充椭圆 /* 格式: Stat 阅读全文
posted @ 2023-05-12 05:37 天子骄龙 阅读(90) 评论(0) 推荐(0)