Reputation: 347
I use the RibbonControl in WPF but I can't change RibbonTab Height.
I want to control the height of the section marked with the red arrow.
Upvotes: 3
Views: 1854
Reputation: 521
Microsoft Ribbon have fixed height so you cant change it. The ribbon control dynamically resizes as the width of the application window changes
You can bind the heights of RibbonTabs
and RibbonGroups
to your windows and tabs so that they have same size.
Read this article for more
Upvotes: 1