Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class CHdrWnd : public CWnd
{
public:
protected:
afx_msg BOOL OnEraseBkgnd( CDC* pDC );
DECLARE_MESSAGE_MAP()
}
BOOL CHdrWnd::OnEraseBkgnd( CDC* pDC )
{
pDC->FillSolidRect(RGB(255, 0, 0));//your color
return TRUE;
}
CHdrWnd m_wndHdr;
....
HWND hWndHeader = (HWND)SendDlgItemMessage(IDC_LISTVIEW, LVM_GETHEADER, 0, 0);
m_wndHdr.SubclassWindow(hWndHeader);