I have an ObservableCollection
:
var lstSchedulDetailRecordsOfUser =
new System.Collections.ObjectModel.ObservableCollection<Scheduler.OpenOffice.SchedulerServiceRef.ScheduleDetailsRef>();
lstSchedulDetailRecordsOfUser = e.Result;
I need to iterate through each row of this list and for each column of the row, I need to add a button on the XAML file. How can I do that?