views:

86

answers:

1

How can I access the ItemsPanel of a ListBox at runtime in silverlight?

+1  A: 

ItemsControl.ItemsPanel Dependency Property? Failing that, you can always walk the tree with the VisualTreeHelper.

Steven Robbins
ItemsPanel is a template, not an instance of the panel
NotDan