Does TableView work with DataTable? #224
-
|
While trying to implement TableView into my app, I noticed a thing called |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment · 1 reply
-
|
|
Beta Was this translation helpful? Give feedback.
WinUI.TableViewis designed to work with collections that inherit fromIList, such asObservableCollectionorList.DataTable, on the other hand, is not supported directly as a data source for TableView. If you want to use data from aDataTable, you’ll need to convert its rows into a supported collection type first.