#997 – Possible Problems with ItemContainerGenerator
January 29, 2014 1 Comment
There are cases when you might use the ItemContainerGenerator type to get the corresonding ListBoxItem for a particular item in a ListBox. For example, the code below will select every other item in a ListBox.
// Select every other item, starting with // the first. int i = 0; while (i < lbNumbers.Items.Count) { // Get item's ListBoxItem ListBoxItem lbi = (ListBoxItem)lbNumbers.ItemContainerGenerator.ContainerFromIndex(i); lbi.IsSelected = true; i += 2; }
The problem with this code is that if UI virtualization is enabled for the ListBox, the ItemContainerGenerator methods will return null for items that are not currently visible. This happens because the corresponding ListBoxItem has not yet been created.
To avoid this, you can either find an alternative method to using ItemContainerGenerator, or you can scroll the corresponding item into view before calling the method to get its container.