0

大约三个小时以来,我一直在尝试获取多选列表框的选定索引。我尝试了各种解决方案,但它们不起作用。我发现的最后一件事如下;

            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。我怎样才能完成这项任务?

4

1 回答 1

0

根据我对您的问题的理解,您需要选择索引...

所以你必须使用列表框点击事件而不是找到选定的索引

例如

  private void mylistbox_Tap_1(object sender, System.Windows.Input.GestureEventArgs e)
        {


            List<ClsReportId> lstrptId = new List<ClsReportId>();
            ListBox lst = (ListBox)sender;
            int i = lst.SelectedIndex;
            if (lst.SelectedValue == null)
            {
            }
            else
            {
                ClsGetSubmittedReport cls = (ClsGetSubmittedReport)lst.SelectedValue;
                reportId = cls.ReportId1.ToString();


            }
        }

希望对你有帮助

谢谢

于 2013-09-05T12:55:43.270 回答