Link to home
Start Free TrialLog in
Avatar of chojan
chojan

asked on

Navigation bar similar to CMFCOutlookBar

I have an MFC SDI application with multiple CFormView pages and would like to build a left-side icon+text navigation panel, aiming for a modern look & feel. I'm looking for MFC C++ code examples.

Some of the methods that I have considered include:

CMFCPropertySheet: looks OK but I don't want the extra region at the bottom of the frame containing the OK & Cancel buttons. Even if we manually hide them, I think an empty region might still remain.
User generated image
CMFCOutlookBar: looks nice but I'm only interested in creating the tab buttons (SetMode2003) without generating the extra tab pane contents above the buttons.
User generated image
CMFCTabCtrl: doesn't appear to support a vertical style.

More specifically, what would be the most straightforward way to produce a navigation bar similar in concept to the following example (on the left side)?
User generated image
Platform: Windows XP/Vista/7
IDE: VS C++ 2012 Pro
ASKER CERTIFIED SOLUTION
Avatar of sarabande
sarabande
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of chojan
chojan

ASKER

Thanks Sara... that's another idea worth trying out.