Skip to content

Instantly share code, notes, and snippets.

@rkusa
Created October 7, 2010 17:44
Show Gist options
  • Save rkusa/615520 to your computer and use it in GitHub Desktop.
Save rkusa/615520 to your computer and use it in GitHub Desktop.
for (int i = 0; i < yourListBox.Items.Count; i++)
{
ListBoxItem item = (ListBoxItem)yourListBox.ItemContainerGenerator.ContainerFromIndex(i);
if (item != null)
{
VisualStateManager.GoToState(item, "BeforeLoaded", false);
}
}
yourListBox.Opacity = 1.0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment