样式中具有内部边距的DataGrid具有错误的初始大小,在调整窗口大小时自行排序

时间:2012-12-19 12:12:12

标签: wpf wpf-controls wpfdatagrid

我有一个包含许多DataGridTemplateColumns的DataGrid。其中一个的宽度为“*”,其余的宽度为“自动”。大多数只包含一个TextBox。我想在每个元素的每一边都有一个边距,所以在分配给TextBox的样式中我有Margin =“10,1”。我观察到的是DataGrid的初始宽度太宽。如果窗口手动变薄,DataGrid也会更薄 - 但保持超宽。如果窗口变大,DataGrid在宽度正确之前不会变宽,从那时起调整大小就能正常工作。

如果我从样式中删除边距并将其显式放在每列的TextBox中,那么一切都按预期工作,所以我的问题就解决了。但是我仍然想知道发生了什么,因为如果我想改变这些利润,那么改变一种风格会好得多。这是DataGrid中的一些奇怪的错误还是我无法正确理解的东西?

DataGrid嵌套在其他一些项目中,但由于修复程序非常简单,因此我认为DataGrid和样式是唯一重要的因素。

列看起来像这样;

<DataGridTemplateColumn x:Name="SKUColumn"
            Header="SKU" 
            Width="Auto">
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <TextBox x:Name="skuText"
                     Text="{Binding Path=SKU, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
                     Style="{StaticResource textBodyCell}"/>
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>

和textBodyCell看起来像这样;

<Style x:Key="textBodyCell" TargetType="{x:Type TextBox}">
    <Setter Property="FontSize"
            Value="{StaticResource bodySize}" />
    <Setter Property="TextWrapping" Value="NoWrap"/>
    <Setter Property="AcceptsReturn" Value="False"/>
    <Setter Property="Margin" Value="10,1"/>
    <Setter Property="Template" Value="{DynamicResource DataGridCellTextBox}"/>

</Style>

其中DataGridCellTextBox是

<ControlTemplate x:Key="DataGridCellTextBox" TargetType="{x:Type TextBoxBase}">

    <ScrollViewer x:Name="PART_ContentHost" Foreground="{StaticResource DataGridUnSelectedRowForeground}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>

    <ControlTemplate.Triggers>
        <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGridRow}}}" Value="True">
            <Setter Property="Foreground"  Value="{StaticResource DataGridSelectedRowForeground}" />
        </DataTrigger>
            <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGridRow}}}" Value="False">
            <Setter Property="Foreground"  Value="{StaticResource DataGridUnSelectedRowForeground}" />
        </DataTrigger>          

        <Trigger Property="IsEnabled" Value="False">
            <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
        </Trigger>
    </ControlTemplate.Triggers>
</ControlTemplate>

0 个答案:

没有答案