考虑以下代码:
int lastItemIndex = m_listbox.ItemsSource.Count - 1;
var groupItem = m_listbox.ItemsSource[lastItemIndex] as GroupedObservableCollection<ScheduleItem, DateTime>;
在像 WPF/Silverlight/WP 这样的多线程环境中,有没有办法确保 lastItemIndex 真的是第二行的最后一个项目索引?
考虑以下代码:
int lastItemIndex = m_listbox.ItemsSource.Count - 1;
var groupItem = m_listbox.ItemsSource[lastItemIndex] as GroupedObservableCollection<ScheduleItem, DateTime>;
在像 WPF/Silverlight/WP 这样的多线程环境中,有没有办法确保 lastItemIndex 真的是第二行的最后一个项目索引?