The WPF Grid
doesn't have visible cells as such. Think of them as invisible grid lines against which you can have child elements be aligned.
So, to style the grid's cells, you have to style the items that are aligned inside the grid.
It is confusing to think of the Grid
as being anything like a WinForms DataGrid
. I guess its closest WinForms equivalent is the TableLayout
control.
Check out some 3rd party grid controls. I used the DevExpress one while it was in beta and found it pretty straightforward.