超网格。按回车键应用过滤器

发布于 2024-09-19 02:20:41 字数 130 浏览 4 评论 0原文

我使用 devexpress XtraGrid 和自动行功能。在文档中我看到: “您还可以指定是在更改值后立即应用过滤还是仅在最终用户按 ENTER 键时应用过滤。” 我想实现第二种行为,但我没有找到任何属性。 那么我怎样才能实现这种行为呢?谢谢

I use devexpress XtraGrid and auto-row feature. At documentation I see:
"You can also specify whether filtering should be applied immediately after changing a value or only when end-users press the ENTER key."
I would like implement second behaviour, but I don't find any properties for this.
So how can I achieve this behaviour? Thanks

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

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

发布评论

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

评论(1

横笛休吹塞上声 2024-09-26 02:20:41

在 KeyDown 事件处理程序上,使用下面的代码

if (e.KeyCode == Keys.Enter)
{
// Your filter code.
}

如果您需要更多帮助,请更具体。 (发布一些代码等)

On KeyDown event handler, use the code below

if (e.KeyCode == Keys.Enter)
{
// Your filter code.
}

If you need more help, please be more specific. (Post some codes etc.)

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