XCEED wpf DataGrid 自动过滤器弹出窗口 - 禁用或挂钩关闭事件

发布于 2024-12-10 19:11:49 字数 94 浏览 0 评论 0原文

我正在使用超越wpf网格(版本3.6.10159.15470),我需要禁用列的自动过滤器或挂钩关闭(或关闭)事件。我搜索了 API,但无法找到如何完成这些任务。你能帮助我吗?

I am using exceed wpf grid (version 3.6.10159.15470) and I need either disable auto filter for a column or hook the closing (or closed) event. I searched the API and was not able to found how to achive any of these tasks. Can you help me?

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

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

发布评论

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

评论(1

成熟稳重的好男人 2024-12-17 19:11:49

在 XAML 中,您可以将列上的 AllowAutoFilter 属性设置为 false 以禁用该列的自动筛选。如果你想在代码中设置它,你可以这样做:

this.MyDataGridControl.Columns["Column1"].AllowAutoFilter = false; 

我希望这有帮助!

In your XAML, you can set the AllowAutoFilter property on the Column to false to disable the AutoFilter for that Column. If you want to set it in code, you can do so like this:

this.MyDataGridControl.Columns["Column1"].AllowAutoFilter = false; 

I hope this helps!

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