I'm using longlistselector in my WP7 app. In this app longlistselector can be populated with several items (more than 20) with a bit complex itemtemplate. In that case when the user click on a button that populate the list, the UI hangs for 3,4 or more seconds waiting the list to be populated. My idea was to show the list while it's populating, I create a Timer and each tick I add an element to the list. Visually the idea works and the UI don't hangs...unfortunately the longlistselector add all the items but in wrong groups. After some tests I replicate the problem also not in a thread. Here is the code:
Here is the Group class that is bound to longlistselector ItemsSource:
public class TaskByProject : ObservableCollection<TaskInProjectGroup>
{
public TaskByProject(List<Task> tasks)
{
// here groups are created and list is populated
}
}
public class TaskInProjectGroup : ObservableCollection<Task>
{
public TaskInProjectGroup(string category)
{
Key = category;
}
public string Key { get; set; }
public bool HasItems { get { return Count > 0; } }
}
Thisi is the code I use to load data:
TaskByProject tasksVisibili;
// create a taskyproject with the same groups of taskView
tasksVisibili = new TaskByProject(emptylist of tasks);
lbToday.ItemsSource = tasksVisibili;
Then create a button to add items to tasksVisibili:
private void Button_Click(object sender, System.Windows.RoutedEventArgs e)
{
tasksVisibili[0].Add(task1);
tasksVisibili[1].Add(task2);
tasksVisibili[2].Add(task3);
}
After clicking the button, the result is that the 3 task are added all to the third group, more specific the result was the same as if I execute this code: tasksVisibili[2].Add(task1); tasksVisibili[2].Add(task2); tasksVisibili[2].Add(task3);
I'm doing it wrong? there is another way to achive my goal? or is a bug?
Regards, Sergio