Version

Please note that this control has been retired and is now obsolete to the XamDataGrid control, and as such, we recommend migrating to that control. It will not be receiving any new features, bug fixes, or support going forward. For help or questions on migrating your codebase to the XamDataGrid, please contact support.

Right to Left Bidirectional Language Support

You can make your WPF application more global with support for Right-to-Left (RTL) and Bi-Directional (BiDi) languages. To take advantage of this piece of localization functionality you simply set the xamGrid object’s FlowDirection property to one of the following values of the FlowDirection enumeration:

  • LeftToRight

  • RightToLeft

In XAML:

<ig:XamGrid x:Name="MyDataGrid" FlowDirection="RightToLeft" ItemsSource={StaticResource DataUtil}
      AutoGenerateColumns="True">
      …
</ig:XamGrid>

In Visual Basic:

Me.MyDataGrid.FlowDirection = FlowDirection.RightToLeft

In C#:

this.MyDataGrid.FlowDirection = FlowDirection.RightToLeft;