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.
我想将数据网格的数据存储在数据表中。如何使用该数据填充数据表?
需要一种以行和列格式而不是项格式访问数据的方法。因此,我们欢迎并需要尽快找到相同的解决方案。
谢谢。
关于你的第二个问题,我认为你可以。
尝试这个
DataView myView = new DataView( MyDataTable ); ICollectionView cv = CollectionViewSource.GetDefaultView(myView);
希望有帮助
雷切尔