TabItem in two rows
#3854
|
How can I set up the TabItem display in two rows when the WPF window is reduced? For example, how is this done in the standard wpf window style? |
Answered by
corvinsz
Jun 2, 2025
Replies: 2 comments 1 reply
|
@kuffo7 This indeed seems like a bug. In standard WPF this is done by using a Because our material design TabControl supports a scroll-able header and internally uses multiple panels to display the header, I'm guessing the fix for this issue is not a straight forward replacement of an internal control. |
1 reply
Answer selected by
kuffo7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


@kuffo7 This indeed seems like a bug. In standard WPF this is done by using a
TabPanel:https://github.com/dotnet/wpf/blob/1642c8162f7f41f8738932c42fbd3585b8b65ae0/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TabControl.xaml#L48-L54
Because our material design TabControl supports a scroll-able header and internally uses multiple panels to display the header, I'm guessing the fix for this issue is not a straight forward replacement of an internal control.
Could you please open an issue for this?