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.
我需要一个适应数据源并动态创建文本框控件的列表视图。
背景:我上传了一个 excel 文件,将其转换为数据表,显示上传的值,允许通过文本框进行编辑,最后将其插入数据库。
数据源将始终是数据表,但列数会因 Excel 文件而异。任何帮助,将不胜感激。
这对于常规列表视图控件是不可能的。好吧,至少我不知道这种可能性。恐怕您需要自己创建一个满足您要求的控件。
您可以尝试使用 DataGrid。
在 Windows 窗体中:
dataGrid.DataSource = yourDataTable;
在 WPF 中:
dataGrid.ItemsSource = yourDataTable.AsEnumerable();