Hi.
I have my old app in WPF and I'm using simple List<MyObject> like a ItemsSource of grid (regular grid from wpf). I have all logic which connect to WCF Service etc. In this list I have fresh data all time. And my grid in my app is reacting on changes in List<MyObject> and this list is reacting on changes in grid. (Twoway).
But i want change my old regular grid to griddata from ver. 11.1.0.21 and it's not work. I dont want changes all logic, create model, viewmodel etc. I want use the same List which i could use wiht my olg grid.
Can I use GridData to react on changes in List<MyObject> and vice versa ?
My old standard xaml is look like:
MyOjbect contain:
bool properties1;
SomeClass object;
SomeClass object contain:
str Name, str Other1, str Other2
And it's all - have any OBservableCollection, EF, DataContext.