zoukankan      html  css  js  c++  java
  • How do I Check for Duplicate Items in a ListView?

    This How To was written in response to the following question in the C# Corner Forums about ListViews:

    The user states:

    Question: "I have code which I used to check duplication in a ListView, but it doesn't seem to be working. Here is my situation. I have three columns in a ListView and I want to check to make sure that I don't duplicate a field when I add an item to the ListView. How do I do that?"

    I tried this code, but it doesn't seem to work:

    if (listView1.Items.Contains(lvi) == false)
    {
    //Add the item to the ListView Control
    listView1.Items.Add(lvi);
    }
    else
    {
    //Warn user of duplicate entry...
    MessageBox.Show("Duplicate Item!");
    }

    Answer:
    This will not work because you are probably not passing the exact same object, but an object that contains the same text. Is this the situation?
    For example this works fine with your code:

    ListViewItem lvi = new ListViewItem("dog");
    Add(lvi);
    Add(lvi);

    The second time you try to add the same object, you get the message box.
    If you want to check the internal information in the row against your Add, you can provide a key in your item. The key corresponds to the name of the item and can be used to compare items using the ContainsKey method:

    if (!listView1.Items.ContainsKey(lvi.Name))
    {
    //Add the item to the ListView Control
    listView1.Items.Add(lvi);
    }
    else
    {
    //Warn user of duplicate entry...
    MessageBox.Show("Duplicate Item!");
    }

    This will work for the following code with a unique name for your ListViewItem (the unique name being "item1"):

    ListViewItem lvi1 = new ListViewItem("dog");
    lvi1.Name = "item1";
    Add(lvi1);

    Otherwise, if you don't provide a key, you'll need to compare the list of items and check each subitem within each item:

    private bool IsInCollection(ListViewItem lvi)
    {
    foreach (ListViewItem item in listView1.Items)
    {
    bool subItemEqualFlag = true;
    for (int i = 0; i < item.SubItems.Count; i++)
    {
    string sub1 = item.SubItems[i].Text;
    string sub2 = lvi.SubItems[i].Text;
    if (sub1 != sub2)
    {
    subItemEqualFlag = false;
    }
    }
    if (subItemEqualFlag)
    return true;
    }

    return false;

    }

    版权说明:作者:张颖希PocketZ's Blog
    出处:http://www.cnblogs.com/PocketZ
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
    若本文为翻译内容,目的为练习英文水平,如有雷同,纯属意外!有不妥之处,欢迎拍砖

  • 相关阅读:
    C++奇数阶幻方(主动生成)
    一次C++作业 C++的I/O流类库 3 (学生注册信息登记程序)
    一次C++作业 C++的I/O流类库2 [文本文件和二进制文件]
    一次C++作业(模板类的构造& C++的I/O流类库)1
    一次C++作业 try-throw-catch
    关于英语作文AI批改的思考(含定向高分方案)
    PhoneNumber类
    一次C++作业
    服务器较全面入手介绍(持续更新)
    JS中多个onload冲突解决办法
  • 原文地址:https://www.cnblogs.com/PocketZ/p/2122648.html
Copyright © 2011-2022 走看看