i have a ObservableCollection which is bound to a ListBox in my View. In my ViewModel is a Command. In this Command i would like to update all MyObjects.
Sample Code:
foreach(MyObject in List)
myobject.Prop = HelperClass.downloadData();
the downloaddata function takes some time...
when i run the command for some minutes nothing happens... and suddenly the View is updated.
Can someone help me?
Thanks