带有位图和文本的 MFC 按钮
我有一个自定义 CButton,它使用 CButton::SetBitmap(bitmap); 加载位图。
同时,我想在同一个按钮上的位图上方显示文本。
我尝试实现 OnPaint(),但它不显示文本,只显示位图
void CBitmapToggleButton::OnPaint()
{
CButton::OnPaint();
CPaintDC dc(this); // device context for painting
CString caption(_T("test message"));
GetWindowText(caption);
CRect rect;
GetWindowRect(&rect);
dc.DrawText(caption, &rect, DT_CENTER);
}
我该怎么做才能显示文本?
I have a Custom CButton which loads a bitmap, using CButton::SetBitmap(bitmap);
Meanwhile, I want to display a text above the bitmap, on the same button.
I tried implementing OnPaint(), but it does not display the text, just the bitmap
void CBitmapToggleButton::OnPaint()
{
CButton::OnPaint();
CPaintDC dc(this); // device context for painting
CString caption(_T("test message"));
GetWindowText(caption);
CRect rect;
GetWindowRect(&rect);
dc.DrawText(caption, &rect, DT_CENTER);
}
What can I do to display the text too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 GetClientRect()。传递给 DrawText() 的参数需要位于客户端坐标中。
也就是说,忘记这一点并使用 CMFCButton。它比您在合理时间内自己编写的任何内容都要好得多。
Use GetClientRect(). The argument passed to DrawText() needs to be in client coordinates.
That said, forget about this and use CMFCButton. It's way better than anything you can write yourself in a reasonable amount of time.
试试这个
Try this