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.
データグリッドのデータをデータテーブルに保存したい。そのデータをデータテーブルに入力するにはどうすればよいですか?
アイテム形式ではなく、行と列の形式でデータにアクセスする方法が必要です。そのため、同じ解決策が歓迎され、できるだけ早く必要とされています。
ありがとう。
2 番目の質問ですが、できると思います。
これを試して
DataView myView = new DataView( MyDataTable ); ICollectionView cv = CollectionViewSource.GetDefaultView(myView);
うまくいけば役立つ
レイチェル