如何在WPF工具包数据网格控件中设置水平网格线的粗细?

发布于 2024-09-05 16:15:31 字数 73 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木落 2024-09-12 16:15:31

我从未这样做过,但我会尝试通过 RowStyle 属性设置行的 BorderThickness 。以下是有关 RowStyleDataGridRow

希望这有效。对结果进行简短的跟进会很棒。

问候

编辑

,您可以在此处阅读,您只能设置例如底部属性。因此只应出现垂直底线。

<Setter Property="BorderThickness" Value="0, 0, 0, 5"/>

I've never done this, but I would try to set the BorderThickness of the rows via the RowStyle 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.

<Setter Property="BorderThickness" Value="0, 0, 0, 5"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文