如何隐藏 GridViewColumn 就像它在 WPF 中运行时折叠一样?
基本上我有一些 CheckBox
控件,我想用它们在运行时显示或隐藏某些 GridViewColumns
。但我未能找到一种可以设置为 false 的 IsVisible
属性。或者甚至是仅存在于 GridViewColumnHeader
上的 Visibility
属性。
关于如何做到这一点有什么想法吗?
Basically I have some CheckBox
controls I want to use to show or hide certain GridViewColumns
at runtime. But I failed to find a sort of IsVisible
property that I can set to false. Or even a Visibility
property that exist only on GridViewColumnHeader
.
Any ideas on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将GridViewColumn Width属性设置为0。这将达到与隐藏它相同的效果。这可以通过数据绑定和转换器来实现。
Set the GridViewColumn Width property to 0. This will achieve the same effect as hiding it. This can be achieved with DataBinding and a Converter.