imgen
imgen

Reputation: 3133

Avalonia - How to place the Tab control's tabs vertically like the OneNote Desktop UI

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

Answers (1)

imgen
imgen

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

Related Questions