如何在没有项目的情况下滚动 DataGrid 列?
我对 WPF DataGrid 有疑问,当项目不为空时,HorizontalScrollBar 是正常的。但如果 items 为空,则即使需要滚动列标题才能看到,也没有 HorizontalScrollBar。我怎样才能看到 HorizontalScrollBar? 我找到了一篇文章 http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/64b18ca9-f9f5-4748-86a8-c5b40815fd9b。但不能解决我的问题。 多谢。
i have a question with the WPF DataGrid, when the items is not empty , HorizontalScrollBar is normal. but if items is empty , there's no HorizontalScrollBar even if the columnsheader need to be scrolled to to see. how can i see the HorizontalScrollBar?
i have found a post http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/64b18ca9-f9f5-4748-86a8-c5b40815fd9b. but not fix my problem.
thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们遇到了同样的问题,我们的解决方案是如果不再有行,则在网格中保留一个空行。这使水平滚动条保持活动状态。
We had same issue and our solution was to keep a single empty row in the grid if there is no rows anymore. This keept horizontal scrollbar active.