Right to left(RTL) in WinUI TreeView

29 Jan 2021 / 1 minute to read

The TreeView supports to change the flow of text to the right-to-left direction by setting the FlowDirection to RightToLeft.

<treeView:SfTreeView x:Name="treeView" FlowDirection="RightToLeft"/>
treeView.FlowDirection = FlowDirection.RightToLeft;

WinUI TreeView with right to left