本文介绍了如何清除Winform Datagridview组合框列项目列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好我正在使用Datagridview Combobox列 但当我重新加载表单或刷新时,自动组合框列值增加了重复... Hi I am Using Datagridview Combobox column but When I reload form or refresh then auto comboboxcolumn value added duplicate... 例如。 选择下拉列表印度美国 Bangaldesh Bangaldesh印度美国孟加拉国 推荐答案 我尝试做一个演示模拟你的问题,我得到一个像 : 这是我的代码: object[] obj = new object[] { "India", "America", "Bangladesh" }; DataGridViewComboBoxColumn cb = new DataGridViewComboBoxColumn(); dataGridView1.Columns.Insert(0, cb); cb.Items.AddRange(obj); //cb.Items.Clear(); cb.Items.AddRange(obj);如果要清除DataGridViewComboBoxColumn项目列表,可以加入以下代码:And if you want to clear DataGridViewComboBoxColumn item list, you can join the code below:cb.Items.Clear();希望这会有所帮助! Hope this helps! 最好的问候, Bob 这篇关于如何清除Winform Datagridview组合框列项目列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-25 00:44