Devexpress 删除一行

发布于 2024-08-13 23:58:04 字数 86 浏览 6 评论 0原文

使用 DevExpress 的网格,是实现仅从 UI 删除所选行的最简单方法。所需的行为是用户多选行然后按 DEL。

我已启用编辑和多项选择。

Using DevExpress's Grid, what the easiest way to implement a delete of a selection of rows from the UI only. The desired behavior is for the user to multi-select rows then press DEL.

I have enabled editing and multi-select.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

最丧也最甜 2024-08-20 23:58:04

来自 Devexpress 支持中心并假设您指的是 Windows 窗体网格:

要删除多个选定的行,请使用
GridView.DeleteSelectedRows
方法。如果你需要有条件的话
保护某些行不被删除,
迭代通过
GridView.SelectedRows 数组,以及
使用以下命令取消选择某些行
GridView.UnselectRow 方法。

如何删除网格中的多行?

如果你想在按键时删除选定的行,你还需要处理网格的按键事件。

如果不是 Windows 窗体,您可以按产品搜索其支持中心。根据我的经验,那里的技术支持非常好。

From Devexpress Support Center and assuming that you are referring to a Windows Form Grid:

To delete multiple selected rows use
the GridView.DeleteSelectedRows
method. If you need to conditionally
protect some rows from deletion,
iterate through the
GridView.SelectedRows array, and
unselect certain rows using the
GridView.UnselectRow method.

How to delete the multiple rows in the grid?

You also need to handle the key down event of the grid if you want to delete the selected rows on a key press.

If it's not Windows Forms you can search their Support Center by product. From my experience the technical support there is very nice.

手长情犹 2024-08-20 23:58:04

我一般用的方法是,

GridView.DeleteRow(GridView.FocusedRowHandle)

效果很好。

The method that I use generally is,

GridView.DeleteRow(GridView.FocusedRowHandle)

It works well.

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