right to left support for data Grid

c#, datagrid, gridview, wpf

Solution

Set `FlowDirection="RightToLeft"`

Problem

How is it possible to set direction of `GridView` in WPF `RightToLeft`: ``` <DataGrid x:Name="gvMembers" HorizontalAlignment="Left" Margin="10,139,0,0" VerticalAlignment="Top" Height="297" Width="580"/> ``` It is left to right by default.

Original source

Related problems