I've found a bug that effects both the resource editor and produced code when dealing with Ribbons. You may already be aware of it but its been driving me nuts so I thought I'd make sure. I'm working with VS2010 C++ and MFC. I was prototyping up an interface to see what it would look like to move from a file menu to a ribbon. I found that if a panel has a title wider than the buttons inside it then the minimum width is still based on the buttons, not the title. This results in the panel returning an incorrect minimum width value when queried.This means two things. The first is that in the produced code the ribbon doesn't calculate the correct category width and doesn't scroll correctly if the window isn't wide enough to display all panels. More specifically when shrinking the window the panels will at first fall off the right side of the ribbon without reducing them or offering a scrolling option.I didn't realize this until later when trying to determine the extent of the bug but if you go into the resource view and edit a ribbon - then start making panels with titles wider than their buttons the exact same thing happens. Panels begin to fall off the right side of the ribbon without it being correctly re-sized to hold them. Very annoying - and if I want to bypass it given which functions are and are not virtual I believe I need to inherit classes from both CMFCRibbonPanel and CMFCRibbonCategory - as well as alter the MFC file headers to give my new classes friend access to certain others. This is an option but not fun as the category that is giving me problems (wider than usual panel names) would normally be created dynamically during run-time depending on data_set selection. I was planning to inherit my own version of the ribbon category already - to make it so you can left mouse click and drag the ribbon category rather than using the somewhat clunky scroll buttons - but I wasn't expecting to have to bypass bugs in MFC to get it to work.
Visual Studio/Silverlight/Tooling version
What category (if any) best represents this feedback?
Steps to reproduce
Product Language
Operating System
Operating System Language
Actual results
Expected results