In WPF datagrids, I have a column defined as DataGridTemplateColumn which I\'ll need to be using on all kinds of columns. As a very simplified example please consider the b
You can set the CellStyle property to a style that overwrites the Template for the DataGridCell.
In the Template, use a ContentPresenter that is bound to the TemplatedParent.Content wherever you want to place the DataGridCell's Content, since the TemplatedParent is the DataGridCell