Version

We recommend that you use the xamDataGrid control instead of the xamGrid control. The xamGrid is being planned for retirement over the next few years and will not receive any new features. We will continue to provide support and critical bug fixes for the xamGrid during this time. 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;