<i id='gVusD'><tr id='gVusD'><dt id='gVusD'><q id='gVusD'><span id='gVusD'><b id='gVusD'><form id='gVusD'><ins id='gVusD'></ins><ul id='gVusD'></ul><sub id='gVusD'></sub></form><legend id='gVusD'></legend><bdo id='gVusD'><pre id='gVusD'><center id='gVusD'></center></pre></bdo></b><th id='gVusD'></th></span></q></dt></tr></i><div id='gVusD'><tfoot id='gVusD'></tfoot><dl id='gVusD'><fieldset id='gVusD'></fieldset></dl></div>

    <small id='gVusD'></small><noframes id='gVusD'>

    1. <tfoot id='gVusD'></tfoot>

      • <bdo id='gVusD'></bdo><ul id='gVusD'></ul>
      <legend id='gVusD'><style id='gVusD'><dir id='gVusD'><q id='gVusD'></q></dir></style></legend>

        如何获取 ListBox 中项目的索引?

        How Can I Get the Index of An Item in a ListBox?(如何获取 ListBox 中项目的索引?)
      1. <i id='lrXuv'><tr id='lrXuv'><dt id='lrXuv'><q id='lrXuv'><span id='lrXuv'><b id='lrXuv'><form id='lrXuv'><ins id='lrXuv'></ins><ul id='lrXuv'></ul><sub id='lrXuv'></sub></form><legend id='lrXuv'></legend><bdo id='lrXuv'><pre id='lrXuv'><center id='lrXuv'></center></pre></bdo></b><th id='lrXuv'></th></span></q></dt></tr></i><div id='lrXuv'><tfoot id='lrXuv'></tfoot><dl id='lrXuv'><fieldset id='lrXuv'></fieldset></dl></div>
          <legend id='lrXuv'><style id='lrXuv'><dir id='lrXuv'><q id='lrXuv'></q></dir></style></legend>

              <tfoot id='lrXuv'></tfoot>
                <tbody id='lrXuv'></tbody>
                <bdo id='lrXuv'></bdo><ul id='lrXuv'></ul>

                <small id='lrXuv'></small><noframes id='lrXuv'>

                  本文介绍了如何获取 ListBox 中项目的索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在向 ListBox 添加项目,如下所示:

                  I am adding items to a ListBox like so:

                  myListBox.Items.addRange(myObjectArray);
                  

                  我还想通过以下方式选择我添加的一些项目:

                  and I also want to select some of the items I add by the following:

                  foreach(MyObject m in otherListOfMyObjects) 
                  {
                      int index = myListBox.Items.IndexOf(m);
                      myListBox.SelectedIndices.Add(index);
                  }
                  

                  但是 index 总是 -1.

                  有没有其他方法可以在 ListBox 中获取对象的索引?

                  Is there a different way to get the index of an object in a ListBox?

                  推荐答案

                  你应该确保 MyObject 覆盖 Equals(), GetHashCode()ToString() 以便 IndexOf() 方法可以正确找到对象.

                  You should make sure that MyObject overrides Equals(), GetHashCode() and ToString() so that the IndexOf() method can find the object properly.

                  从技术上讲,ToString() 对于相等性测试不需要被覆盖,但它对于调试很有用.

                  Technically, ToString() doesn't need to be overridden for equality testing, but it is useful for debugging.

                  这篇关于如何获取 ListBox 中项目的索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Populate ListBox with a IEnumrable on another thread (winforms)(在另一个线程(winforms)上使用 IEnumrable 填充 ListBox)
                  listbox selected item give me quot; System.Data.DataRowViewquot; , C# winforms(列表框选择的项目给我quot;System.Data.DataRowView, C# Winforms)
                  Cannot remove items from ListBox(无法从列表框中删除项目)
                  Preventing ListBox scrolling to top when updated(更新时防止列表框滚动到顶部)
                  Drag and drop from list to canvas on windows phone with MVVM(使用 MVVM 在 Windows 手机上从列表拖放到画布)
                  Deselection on a WPF listbox with extended selection mode(具有扩展选择模式的 WPF 列表框上的取消选择)

                    <i id='tv1lc'><tr id='tv1lc'><dt id='tv1lc'><q id='tv1lc'><span id='tv1lc'><b id='tv1lc'><form id='tv1lc'><ins id='tv1lc'></ins><ul id='tv1lc'></ul><sub id='tv1lc'></sub></form><legend id='tv1lc'></legend><bdo id='tv1lc'><pre id='tv1lc'><center id='tv1lc'></center></pre></bdo></b><th id='tv1lc'></th></span></q></dt></tr></i><div id='tv1lc'><tfoot id='tv1lc'></tfoot><dl id='tv1lc'><fieldset id='tv1lc'></fieldset></dl></div>
                      <tbody id='tv1lc'></tbody>
                  1. <legend id='tv1lc'><style id='tv1lc'><dir id='tv1lc'><q id='tv1lc'></q></dir></style></legend>

                        <bdo id='tv1lc'></bdo><ul id='tv1lc'></ul>
                        • <tfoot id='tv1lc'></tfoot>

                          <small id='tv1lc'></small><noframes id='tv1lc'>