如何在DataGridView中顯示動態更新的綁定清單
>
綁定清單
簡介
綁定清單簡介
var list = new BindingList<Person>(persons); myGrid.DataSource = list;
簡介> 🎜>綁定列表 T> DataGridView 可以是顯示動態資料的便捷方法。但是,如果沒有明確重新綁定,更新清單可能不會總是反映 DataGridView 中的變更。
問題var list = new List<Person>() { new Person { Name = "Joe" }, new Person { Name = "Misha" }, }; var bindingList = new BindingList<Person>(list); var source = new BindingSource(bindingList, null); grid.DataSource = source;
以上是綁定到動態清單時如何保持 DataGridView 更新?的詳細內容。更多資訊請關注PHP中文網其他相關文章!