MFC中的EDIT框改變一下背景顏色
這兩天需要給MFC中的EDIT框改變一下背景顏色,而且由於框比較多,且每次需要變色的框也是隨機的,但是個數是確定的。在網上搜了好多,下面這個是介紹的比較清楚,而且可以用的一種方法。
由於本人用的vs2008,在對話方塊上右擊沒有新增事件處理函式一項,且對MFC也不是特別熟悉,所以開始只是在對話方塊類中過載了onctlcolor()函式,但新增時一直沒有效果,最後發現出了只定義該函式外還需要在MAP中新增該函式的對映關係才能正常使用。另外要一次改變多個框的背景的話,需要開闢空間,先把這些框的ID存上,然後在onctlcolor()函式中一一比對。
MFC裡畫圖了,顏色了的真抽象,沒點基礎好難理解啊,
轉自:http://dendrites.blog.163.com/blog/static/165376178201010193214142/
這裡介紹的改變文字編輯框的背景顏色的方法,不需要對CEdit生成新的類,步驟如下:
(1) 新建一個基於對話方塊的MFC應用程式,程式名稱為Test
(2) 在對話方塊上新增兩個文字框,ID分別為IDC_EDIT1和IDC_EDIT2
(3) 在CTestDlg的標頭檔案中新增幾個成員變數,如下所示:
view plainprint?
class CTestDlg : public CDialog { protected: CBrush m_redbrush,m_bluebrush; COLORREF m_redcolor,m_bluecolor,m_textcolor; };
(4) 在CTestDlg.cpp檔案的BOOL CTestDlg::OnInitDialog()中新增以下程式碼:
view plainprint?
BOOL CTestDlg::OnInitDialog() { CDialog::OnInitDialog(); // Set the icon for this dialog. The framework does this automatically // when the application's main window is not a dialog SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon m_redcolor=RGB(255,0,0); // 紅色 m_bluecolor=RGB(0,0,255); // 藍色 m_textcolor=RGB(255,255,255); // 文字顏色設定為白色 m_redbrush.CreateSolidBrush(m_redcolor); // 紅色背景色 m_bluebrush.CreateSolidBrush(m_bluecolor); // 藍色背景色 return TRUE; // return TRUE unless you set the focus to a control }
(5) 右擊對話方塊空白麵,選擇Event,為WM_CTLCOLOR新增訊息響應函式,編輯程式碼如下:
view plainprint?
HBRUSH CTestDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
// TODO: Change any attributes of the DC here
switch (nCtlColor) //對所有同一型別的控制元件進行判斷
{
// process my edit controls by ID.
case CTLCOLOR_EDIT:
case CTLCOLOR_MSGBOX://假設控制元件是文字框或者訊息框,則進入下一個switch
switch (pWnd->GetDlgCtrlID())//對某一個特定控制元件進行判斷
{
// first CEdit control ID
case IDC_EDIT1: // 第一個文字框
// here
pDC->SetBkColor(m_bluecolor); // change the background
// color [background colour
// of the text ONLY]
pDC->SetTextColor(m_textcolor); // change the text color
hbr = (HBRUSH) m_bluebrush; // apply the blue brush
// [this fills the control
// rectangle]
break;
// second CEdit control ID
case IDC_EDIT2: // 第二個文字框
// but control is still
// filled with the brush
// color!
pDC->SetBkMode(TRANSPARENT); // make background
// transparent [only affects
// the TEXT itself]
pDC->SetTextColor(m_textcolor); // change the text color
hbr = (HBRUSH) m_redbrush; // apply the red brush
// [this fills the control
// rectangle]
break;
default:
hbr=CDialog::OnCtlColor(pDC,pWnd,nCtlColor);
break;
}
break;
}
// TODO: Return a different brush if the default is not desired
return hbr;
}
注:case的類別有以下幾種:
CTLCOLOR_BTN 按鈕控制元件
CTLCOLOR_DLG 對話方塊
CTLCOLOR_EDIT 編輯框
CTLCOLOR_LISTBOX 列表框
CTLCOLOR_MSGBOX 訊息框
CTLCOLOR_SCROLLBAR 滾動條
CTLCOLOR_STATIC 靜態文字