3

谁能告诉我如何在 Xceed DataGridControl 中设置行高?因为为 DataRow、Row 和 DataCell 设置样式没有任何作用。好像是固定在 30 的,我一直找不到任何方法来改变它,甚至搜索网格附带的示例。

4

1 回答 1

4

有两种方法...

在资源中:

<Style TargetType="{x:Type xcdg:DataRow}">
    <Setter Property="Height" Value="40" />
</Style>

在 DataGridControl.View 中:

<xcdg:DataGridControl.View>
    <xcdg:TableflowView ContainerHeight="40" />
</xcdg:DataGridControl.View>

在 Xceed 论坛中:http: //xceed.com/CS/forums/post/32514.aspx

于 2015-04-02T05:51:07.543 回答