UpdateUI
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I created an object inherited from DataGridColumnStyle using a pattern from Internet. It gives unpredictable results in DataGrid after modifing first field in new row (data disappears). After some investigations I found the matter: protected override void UpdateUI(CurrencyManager src,int row,string itx) { if(itx!=null) myUniText.Text=itx; else myUniText.Text=GetText(GetColumnValueAtRow(src,row)); } myUniText is a TextColumn object from DataGridColumnStyle. After deleting the method or it's body all works OK. May be someone know something about it ? Hi, AW