I have a method:
private void DeletePuzzle(object param) { }
param is System.Windows.Controls.SelectedItemCollection , which I got from the WPF ListView SelectedItems property.
Somehow I cannot distinguish it from an object for anything useful. I cannot create a System.Windows.Controls.SelectedItemCollection due to its level of protection, and param will not be dropped on IList , ICollection or IEnumerable .
How can I iterate over parameter items?
wpf selecteditem
Matt Searles Dec 10 '09 at 0:43 2009-12-10 00:43
source share