Hi,
Please try the following (using the ConverterCulture property of binding):
Please try the following (using the ConverterCulture property of binding):
xmlns:gl="clr-namespace:System.Globalization;assembly=mscorlib"
<xcdg:Column Title="Departure" FieldName="Departure" DisplayMemberBinding="{Binding Departure}"
CellHorizontalContentAlignment="Center" CellVerticalContentAlignment="Center">
<xcdg:Column.CellContentTemplate>
<DataTemplate>
<TextBlock Text="{Binding StringFormat=d, ConverterCulture={x:Static gl:CultureInfo.CurrentCulture}}" />
</DataTemplate>
</xcdg:Column.CellContentTemplate>
</xcdg:Column>