如何在WPF工具包数据网格控件中设置水平网格线的粗细?
我正在使用 WPF 工具包数据网格来显示一些数据,并希望增加每行水平网格线的厚度,我本以为这将是一件简单的事情,但我找不到解决方案。
I am using the WPF toolkit datagrid to display some data and want to increase the thickness of the horizontal girdlines for each row, I would have thought this would be a simple thing to do but i can't find solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未这样做过,但我会尝试通过
RowStyle
属性设置行的BorderThickness
。以下是有关 RowStyle 和 DataGridRow。希望这有效。对结果进行简短的跟进会很棒。
问候
编辑
,您可以在此处阅读,您只能设置例如底部属性。因此只应出现垂直底线。
I've never done this, but I would try to set the
BorderThickness
of the rows via theRowStyle
property. Here is some documentation about the RowStyle and for the DataGridRow.Hope this works. A short follow up with the result would be great.
Regards
EDIT
As you can read here, you can set only e.g. the bottom property. So only the vertical bottom lines should appear.