gpt4 book ai didi

c# - 从 Listview 限制 C# 中 DataGrid View 中的重复值?

转载 作者:行者123 更新时间:2023-11-30 22:19:49 25 4
gpt4 key购买 nike

使用 ListView 控件在 MouseDoubleClick_event 上向 DataGridView 添加行行被添加到 DataGrid 但它也添加了重复行。有没有办法处理重复值

   ArrayList arrListChkIDs = new ArrayList();
if (dgvPriceView.Rows.Count > 0)
{
for (int i = 0; i < dgvPriceView.Rows.Count - 1; i++)
{
arrListChkIDs.Add(dgvPriceView.Rows[i].Cells["Code"].Value);
}

}

Getting Unique Value In array List to compare With My ListView Value Now How Should I Compare It??

最佳答案

嘿,现在从这里开始非常简单

ArrayList arrListChkIDs = new ArrayList();
//Now Get and Check The Code from List View or put the Index Number at subItems
string Code = listView.SelectedItems[0].SubItems["Code"].Text;
if (!arrListChkIDs.Contains(Code))
{

}
else
{
MessageBox.Show("Row Already Exist!",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
return;
}

关于c# - 从 Listview 限制 C# 中 DataGrid View 中的重复值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15355531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com