I think you can use some of the features of MFC-feature-pack by implementing OnApplicationLook on your CDialog base (check out Step 4 on this page ). It might be better to implement the entire OnApplicationLook method, but you can test your application by simply adding it to OnInitDialog :
CMFCVisualManagerOffice2007::SetStyle(CMFCVisualManagerOffice2007::Office2007_Silver); CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerOffice2007)); CDockingManager::SetDockingMode(DT_SMART); RedrawWindow(NULL, NULL, RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_UPDATENOW | RDW_FRAME | RDW_ERASE);
source share