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

link|improve this question
LongListSelector uses item virtualisation so it should be reusing UI elements when they're not in view. I'd look at optimising your item template. – Richard Szalay Nov 5 '11 at 20:32
Hi, I've optimised the template the best I reach...but to have a real decreasing of load time I need to delete some elements and I don't want to do it. So it's impossible on longlistselector to add items on ObservableCollection due to item virtualization? – Sergio Capozzi Nov 9 '11 at 9:10
Are you targetting Mango/7.1? Have you tried running the profiler? – Richard Szalay Nov 15 '11 at 16:10
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.