我有一个网格,其中单元格包含文本块。 我想在单元格中的文本中添加一些填充(将它们与标题文本一起移动),但它没有效果。
XAML:
<dg2d:DataGrid2DT.CellStyle>
<Style TargetType="wpftoolkit:DataGridCell">
<Setter Property="TextBlock.TextAlignment" Value="Left" />
<Setter Property="TextBlock.Padding" Value="4, 4, 4, 4" />
<Setter Property="TextBlock.VerticalAlignment" Value="Stretch"/>
<Setter Property="TextBlock.HorizontalAlignment" Value="Stretch"/>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="LightBlue"/>
</Trigger>
</Style.Triggers>
</Style>
</dg2d:DataGrid2DT.CellStyle>
无论我在填充中设置什么,它总是一样的,请参阅:
为什么Padding
在这里不起作用?