在 wpf 上的数据网格中编辑整行的最佳方法?

发布于 2024-11-05 13:27:37 字数 123 浏览 0 评论 0原文

在数据网格上编辑整行的最佳方法是什么? 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十级心震 2024-11-12 13:27:37

我不再使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文