Reputation: 3133
I am new to Avalonia. In WPF, you can easily place the tab control's tabs vertically, demonstrated in below article https://www.wpf-tutorial.com/tabcontrol/tab-positions/
How could I achieve similar things in Avalonia?
Upvotes: 6
Views: 3910
Reputation: 3133
Just found out, identical to WPF, set the attribute TabStripPlacement
to Left
will do the trick, like below
<TabControl TabStripPlacement="Left">
Upvotes: 10