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.
有一个我正在编码的应用程序,它使用 DataGrid 的。我想要做的是将标题文本替换为 sql 数据库中的列中的标题文本。有没有人尝试过这个或对如何实现它有任何想法?
你应该做什么。
使用 sql 查询填充数据表(在 Google 和 Stackoverflow 上易于搜索)。
说你的查询是
Select id, Emp_Name from emp;
将该 Datatable 作为 ItemSource 提供给 DataGrid。
现在您的网格列将与您的 sql 查询的列相同。IE。数据网格将有 2 列(id 和 Emp_Name)