gt = new DataGridTemplateColumn();
dt =
(DataTemplate)XamlReader.Load(CellTemp.ToString());
((DataGridTemplateColumn)(gt)).CellTemplate
= dt;
Also adding events for KeyDown like on the forum :
http://forums.silverlight.net/forums/p/191624/442641.aspx
But I cannot capture, for some reason CellEditEnded & RowEditEnded events
(the cells are auto - editing).
I think not doing the cells auto-edit, but doing this on some other trick,
like : CurrentCellChanged on the grid.
But, finally - how can I capture the CellEditEnded & RowEditEnded events?
Thanks :)