XCEED wpf DataGrid 自动过滤器弹出窗口 - 禁用或挂钩关闭事件
我正在使用超越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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 XAML 中,您可以将列上的 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:
I hope this helps!