How to make a CStatic control (MFC) transparent?(如何使 CStatic 控件 (MFC) 透明?)
问题描述
我的应用程序有一个带有填充整个对话框的图像的开始对话框.另外还有一个 CStatic 控件,它为用户显示一些可变信息.我使用以下代码使 CStatic 控件透明:
My application has a start dialog with an image which fills the whole dialog. Additionaly there is a CStatic control, which displays some variable information for the user. I made the CStatic control transparent with following code:
HBRUSH CStartbildDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
if(pWnd->GetDlgCtrlID() == IDC_STATIC_INFO)
{
pDC->SetBkMode(TRANSPARENT);
return reinterpret_cast<HBRUSH>(::GetStockObject(NULL_BRUSH));
}
else
return CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
}
当我用 GetDlgItem(IDC_STATIC_INFO)->SetWindowText 更改静态控件的文本时,新文本会与旧文本重叠(旧文本不会被删除).我曾尝试在使用 GetDlgItem(IDC_STATIC_BILD)->Invalidate() 调用 SetWindowText 图像之前重新绘制背景,但随后没有显示任何信息文本(既不是旧的也不是新).
When I change the text of the static control with GetDlgItem(IDC_STATIC_INFO)->SetWindowText, the new text overlaps the old text (the old text is not deleted). I have tried to repaint the background befor calling SetWindowText image with GetDlgItem(IDC_STATIC_BILD)->Invalidate(), but then no info text is shown (neither the old nor the new).
您知道如何使静态控件透明,以便我也可以用新文本覆盖它吗?
Do you know how I can make the static control transparent, so that I also can override it with a new text?
感谢您的帮助!
解决方案:来自 Sanja 的 codeproject-link 的方法 2(改编)对我有用.
Solution: Method 2 (adapted) from the codeproject-link from Sanja worked for me.
GetDlgItem(IDC_STATIC_INFO)->SetWindowText(tmp);
CRect rect;
GetDlgItem(IDC_STATIC_INFO)->GetWindowRect(&rect);
ScreenToClient(&rect);
InvalidateRect(&rect);
UpdateWindow();
推荐答案
你好,你可以找到透明静态示例 这里
Hi you can find transparent static sample here
这篇关于如何使 CStatic 控件 (MFC) 透明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使 CStatic 控件 (MFC) 透明?
基础教程推荐
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- c++ STL设置差异 2022-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
