Tip: Painting the CToolbar's Parent Window (AfxControlBar) | CodeGuru

Tip: Painting the CToolbar’s Parent Window (AfxControlBar)

Using the Code In your application, override OnNotify member function in your CMainFrame to handle the WM_NOTIFY message for painting the AfxControlBar. In MainFrm.h file, declare the following member variable and member function: class CMainFrame : public CMDIFrameWnd { ….. CBrush m_BrushDocBar; BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult); ….. } In MainFrm.cpp, in constructor […]

Written By
CodeGuru Staff
CodeGuru Staff
Apr 23, 2008
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Using the Code

In your application, override OnNotify member function in your CMainFrame to handle the WM_NOTIFY message for painting the AfxControlBar.

In MainFrm.h file, declare the following member variable and member function:

class CMainFrame : public CMDIFrameWnd
{
   .....
   CBrush m_BrushDocBar;

   BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
   .....
}

In MainFrm.cpp, in constructor create a solid brush as follows:

CMainFrame::CMainFrame()
{
   m_BrushDocBar.CreateSolidBrush(RGB(0, 255, 255));
}

In MainFrm.cpp, provide the definition of OnNotify() function as follows:

BOOL CMainFrame::OnNotify(WPARAM wParam,
                          LPARAM lParam,
                          LRESULT* pResult)
{
   LPNMHDR pnmh = (LPNMHDR) lParam;
   if(pnmh->hwndFrom == m_wndToolBar.m_hWnd)
   {
      LPNMTBCUSTOMDRAW lpNMCustomDraw = (LPNMTBCUSTOMDRAW) lParam;
      CRect rect;
      CWnd* pWnd = m_wndToolBar.GetParent();
      TCHAR szClassName[200];
      GetClassName(pWnd->m_hWnd, szClassName, 200);
      CString strTemp = szClassName;
      if(strTemp.Find(_T("AfxControlBar")) >= 0)
      {
         SetClassLong(pWnd->m_hWnd,
                      GCL_HBRBACKGROUND,
                      (LONG)m_BrushDocBar.GetSafeHandle());
      }
   }
   return CMDIFrameWnd::OnNotify(wParam, lParam, pResult);
}
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.