WPF Datagrid - 可重新调整大小的RowDetails

时间:2011-03-14 03:34:27

标签: wpf datagrid wpfdatagrid

我需要在DataGrid中使RowDetails重新调整大小(点击并拖动)。我只对高度重新调整大小感兴趣。这可能吗?

1 个答案:

答案 0 :(得分:2)

在DataTemplate中使用gridsplitter,例如:

<DataTemplate>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="3"/>
        </Grid.RowDefinitions>
        <!-- Content here -->
        <GridSplitter Grid.Row="1" HorizontalAlignment="Stretch"
                  ResizeBehavior="PreviousAndCurrent" ResizeDirection="Rows"/>
    </Grid>
</DataTemplate>