如何从BindingList中删除与gridview绑定的项目?

时间:2011-03-23 17:16:48

标签: c# list data-binding bindinglist

我有一个gridview,我使用绑定列表进行绑定。在这个网格中,我可以添加/删除项目n次。所以我希望表达式,如果我从网格中删除一行,它将从列表中删除相同的项目。我的列表是BindingList。

2 个答案:

答案 0 :(得分:2)

这是一种更好的方法。该代码从dataGrid和bindingList:

中删除所选行
public partial class Form1 : Form
    {
        BindingList<Person> bList;
        public Form1()
        {
            InitializeComponent();
            bList = new BindingList<Person> 
            {
                new Person{ id=1,name="John"},
                new Person{id=2,name="Sara"},
               new Person{id=3,name="Goerge"}
            };
            dataGridView1.DataSource = bList;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string item = dataGridView1[dataGridView1.CurrentCell.ColumnIndex, dataGridView1.CurrentCell.RowIndex].Value.ToString();
            if (item != null && dataGridView1.CurrentCell.ColumnIndex != 0)
            {
                int _id = Convert.ToInt32(dataGridView1[0, dataGridView1.CurrentCell.RowIndex].Value);
                var bList_Temp = bList.Where(w => w.id == _id).ToList();

                //REMOVE WHOLE ROW:
                foreach (Person p in bList_Temp)
                    bList.Remove(p);
            }
        }
    }

    class Person
    {
        public int id { get; set; }
        public string name { get; set; }
    }

米蒂亚

答案 1 :(得分:0)

如果你的dataGrid绑定到一个dataSource,比如BindingList,你必须删除dataSource中的项目(在BinidngList中)。 看看这个:

BindingList bList;

private void buttonRemoveSelected_Click(object sender, EventArgs e)
{
    string item = dataGridView1[dataGridView1.CurrentCell.ColumnIndex, dataGridView1.CurrentCell.RowIndex].Value.ToString();
    if (item != null)
    {
        int _id = Convert.ToInt32(dataGridView1[0, dataGridView1.CurrentCell.RowIndex].Value);
        foreach (Person p in bList)
        {
            if (p.id == _id)
                p.name = "";
        }
    }
}

米蒂亚