Link to home
Start Free TrialLog in
Avatar of BROOKLYN1950
BROOKLYN1950Flag for United States of America

asked on

In-Ribbon Galleries with the Microsoft Ribbon Control

I've been developing a WPF ribbon application using the controls in the System.Windows.Controls.Ribbon namespace. The more I use this, the more I find features missing here and there when compared with other ribbons like the ones from Microsoft Office. One of these features I can't seem to find is the "In-Ribbon Gallery". Like the "Styles" gallery from MS Word:
User generated imageI have a few places I would like to use this but I can't seem to find a control for it. Any ideas how I can achieve this?
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

I wonder if the ribbon control here has what you need?

Fluent.Ribbon
https://github.com/fluentribbon/Fluent.Ribbon
You might recreate something similar by filling in a standard ListView control that you display at the desired location.

And does not the Font control OK for that purpose, event if it is simpler?
Avatar of BROOKLYN1950

ASKER

I have looking into the Fluent Ribbon but would like to avoid remaking the whole ribbon, since I already have it done with the Microsoft Ribbon.

I might be able to do something with the ListView, but I was hoping to stick with Ribbon controls so that it could easily integrate with the other ribbon features (like the sizing).

As for the Font control, that is not what I'm looking for. I'm not trying to make ComboBox (and not for fonts either).
ASKER CERTIFIED SOLUTION
Avatar of BROOKLYN1950
BROOKLYN1950
Flag of United States of America 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
I ended up figuring out a solution myself.