大约三个小时以来,我一直在尝试获取多选列表框的选定索引。我尝试了各种解决方案,但它们不起作用。我发现的最后一件事如下;
for (int i = 0; i < this.myListBox.Items.Count; i++)
{
ListBoxItem currentItem = this.myListBox.ItemContainerGenerator.ContainerFromIndex(i) as ListBoxItem;
if (currentItem != null && currentItem.IsSelected)
{
ApplicationManager.Instance.getContactManager().addToIndexes(i);
}
}
这似乎可行,但是当我在列表中向下滚动时,先前选择的项目的 listboxitem 返回 null。我怎样才能完成这项任务?