Muhammad Tauseef
Muhammad Tauseef

Reputation: 433

Using MenuBar and Ribbon Simultaneously in MFC

I want to achieve something like this MenuBar and ToolBar

Is it possible in MFC? If yes, what is the ideal way?

Upvotes: 0

Views: 341

Answers (1)

sergiol
sergiol

Reputation: 4335

Yes, it is. I was demanded to do it and now have an application displaying a menu and a ribbon. In my case my main window class is derived from CFrameWndEx and it has a CMFCMenuBar member and a CMFCRibbonBar.

But I agree with @Michael Walz it is a strange interface.

The rest of the work, is your job to investigate...

BTW, the ribbon on your picture does not seem to be really a ribbon as it has no tabs on its top. Is really a ribbon you want, or are you speaking about a toolbar?

Upvotes: 0

Related Questions