خيال النملة
خيال النملة

Reputation: 85

change the column direction in wpf datagrid

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

Answers (1)

Fedor
Fedor

Reputation: 1578

What about FlowDirection property?

<DataGrid FlowDirection="RightToLeft">

Upvotes: 4

Related Questions