Reputation: 433
I want to achieve something like this
Is it possible in MFC? If yes, what is the ideal way?
Upvotes: 0
Views: 341
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