首页 > 代码库 > C++ BackColor_Dialog
C++ BackColor_Dialog
相关主题 |
1. 用纯色 设置对话对话框的背景色 2. 用位图 设置对话对话框的背景色 3. 使用Picture Ctrl来设置背景图片 |
|
其他相关 CColorDialog |
代码::用纯色 设置对话对话框的背景色 |
HBRUSH CProject01Dlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); // TODO: Change any attributes of the DC here CBrush cbrush(RGB(255,0,0)); CRect crect; GetClientRect(crect); pDC->SelectObject(&cbrush); pDC->FillRect(crect,&cbrush); return cbrush; // TODO: Return a different brush if the default is not desired return hbr; } 效果图 有个现象当单击1个按钮时 部分按钮会被隐藏 |
代码::用位图 设置对话对话框的背景色 |
resources 导入1个bitmap位图 // mfcDlg.h : header file // Implementation protected: HICON m_hIcon; CBrush m_BKBrush;//画刷 ::OnInitDialog() // TODO: Add extra initialization here CBitmap* pBitmap = new CBitmap; ASSERT(pBitmap); pBitmap->LoadBitmap(IDB_BITMAP1);//载入位图资源 m_BKBrush.CreatePatternBrush(pBitmap);//创建位图画刷 delete pBitmap; ::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) // TODO: Change any attributes of the DC here if (nCtlColor == CTLCOLOR_DLG ) return (HBRUSH)m_BKBrush.GetSafeHandle(); //返回创建的位图画刷 // TODO: Return a different brush if the default is not desired 效果图 |
关联picDialog Shape
来自为知笔记(Wiz)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。