The following template shows the DataGridCell content correctly, when it is specified as the ControlTemplate of a single DataGridCell (found after a Click event):
<DataTemplate x:Key="gridCellTemplate">
<Border BorderBrush="RoyalBlue" BorderThickness="2" CornerRadius="15">
<ContentPresenter Content="{Binding}" Margin="2,2,2,2"/>
</Border>
</DataTemplate>
However, if I use this template as the ControlTemplate in a style targeting the DataGridCell type, and use that style as the CellStyle of a DataGridColumn, the column cells' contents show up as DataRowView, meaning that the cells could not extract their proper contents from the matching element of the ItemArray.
Anyone knows how to set the Binding correctly for the ContentPresenter?