码迷,mamicode.com
首页 > 编程语言 > 详细

C++ BackColor_Dialog

时间:2014-08-01 22:40:22      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   使用   os   strong   

相关主题

1. 用纯色 设置对话对话框的背景色

2. 用位图 设置对话对话框的背景色

3. 使用Picture Ctrl来设置背景图片

 
 
 
 

对话框背景色

 
 
其他相关
 
 
 
 
 

代码::用纯色 设置对话对话框的背景色

 

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;
}
 

效果图

bubuko.com,布布扣

有个现象当单击1个按钮时 部分按钮会被隐藏

 
 

代码::用位图 设置对话对话框的背景色

  resources 导入1个bitmap位图
 
// mfcDlg.h : header file
// Implementation
protected:
    HICON m_hIcon;
    CBrush m_BKBrush;//画刷
            
::OnInitDialog()
    // TODO: Add extra initialization here
    CBitmappBitmap = new CBitmap;
    ASSERT(pBitmap);
    pBitmap->LoadBitmap(IDB_BITMAP1);//载入位图资源
    m_BKBrush.CreatePatternBrush(pBitmap);//创建位图画刷
    delete pBitmap;
                                      
::OnCtlColor(CDCpDCCWndpWndUINT 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
 

效果图

bubuko.com,布布扣

 
关联picDialog Shape




C++ BackColor_Dialog,布布扣,bubuko.com

C++ BackColor_Dialog

标签:des   style   blog   http   color   使用   os   strong   

原文地址:http://www.cnblogs.com/xe2011/p/3885696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!