Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WPF。我有一个显示在 DataGrid 中的 DataTable(数据绑定到 .DefaultView)。一个单独的线程将新行添加到 DataTable,但这些行不会显示在 DataGrid 中。
我想我做错了什么。你们中的某个人能否启发我如何在 DataGrid 中显示 DataTable,同时以编程方式添加新行?
在此先感谢,吉安卢卡。
添加新行后,您必须刷新网格。
//when dataTable changes datagrid.Items.Refresh()