设置 WPF Datagrid 的起始位置
我想冻结 WPF Datagrid 中的前 2 列,我设法使用 FrozenColumnCount 属性来做到这一点。然而,当我运行该程序时,我看到水平滚动条在冻结的列之后开始,这看起来很奇怪。有没有办法使用某些样式从第一列开始水平滚动条?
I want to freeze first 2 columns in my WPF Datagrid which I managed to do using FrozenColumnCount property. However when I ran the program I see that the horizontal scroll bar starts after frozen columns which looks wierd. Is there a way to start my Horizontal scrollbar from first column using some styles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须编辑控件模板,在模板中您可以设置 PART_HorizontalScrollBar 的起始列并达到您想要的结果。
You will have to edit the control template, in template you can set the starting column for PART_HorizontalScrollBar and achieve result you want.