Ribbon #544
Replies: 3 comments
-
For future reference, the WPF Ribbon docs are here. One main difference here is that this is just the internals of a Ribbon tab, vs. the WPF control which handled the tabs itself. However, now with both It should be something we think about for a Sample though in order to show the complete experience. |
Beta Was this translation helpful? Give feedback.
-
This was added in #546. See original [duplicate] discussion in #500. |
Beta Was this translation helpful? Give feedback.
-
I see the currently available API is simply I further imagine future complex scenarios that could benefit from a close integration between |
Beta Was this translation helpful? Give feedback.
-
Problem statement
Office and applications like Paint are using a "large" ribbon to display all their available commands. Those ribbons display all the available commands in groups. Those groups can automatically be collapsed if there is not enough space available to display them all based on a priority order.
The toolkit already provides a "small" ribbon through the
TabbedCommandBar
(See #500 and Porting TabbedCommandBar #243) but does not have any way to display the "large" ribbon.Inspiration
Default
Narrow
Proposed solution
Add a new custom control to the toolkit.
It will use a custom layout to automatically collapse the ribbon's groups when there is not enough space available.
If all the groups cannot fit in the available width, the ribbon should display a left and/or right scroll buttons.
Result
Beta Was this translation helpful? Give feedback.
All reactions