在 wpf 上的数据网格中编辑整行的最佳方法?
在数据网格上编辑整行的最佳方法是什么? Datagrid 绑定到sql 表。我想编辑更改并提交更改的字段。
如果可能的话,如果有人可以建议我,这个问题的一个简单而容易的解决方案将是 gr8。
提前致谢
What is the best way of editing a entire row on datagrid. Datagrid is bind to sql table. I would like to edit the changes and commit the changed field.
If possible a simple and easy solution for this problem would be gr8 if anyone could suggest me.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不再使用 DataGrid 进行编辑。我使用 ListView 然后提供 GridView 作为 ListView.View。在 GridView 内部,您可以使用 CellTemplates 创建 GridViewColumns。每个 GridView 行的最后一列是一个用于删除该行的按钮。我不支持浏览和编辑模式,只支持编辑模式。该应用程序运行更加流畅,并且我没有遇到使用 DataGrid 带来的任何麻烦。
I quit using DataGrid for editing. I use the ListView then provide then provide a GridView as the ListView.View. Inside the GridView you can create GridViewColumns with CellTemplates. The last column of each GridView row is a button to delete that row. Instead of supporting a browse and edit mode, I just support an edit mode. The application moves more fluidly and I don't have any of the headaches that comes along with working with the DataGrid.