Reputation: 85
I'm searching about WPF property that makes the columns direction to the right direction. In Windows Forms there is property named RightToLeft that makes this job, but i don't find any thing in WPF that do this job. Can any one help me, please?
Upvotes: 1
Views: 555
Reputation: 1578
What about FlowDirection property?
<DataGrid FlowDirection="RightToLeft">
Upvotes: 4