为啥 Width="*" 不适用于位于 RowDetailsTemplate 中的 DataGrid 中的列

Posted

技术标签:

【中文标题】为啥 Width="*" 不适用于位于 RowDetailsTemplate 中的 DataGrid 中的列【英文标题】:Why Width="*" doesn't work for columns in DataGrid located in RowDetailsTemplate为什么 Width="*" 不适用于位于 RowDetailsTemplate 中的 DataGrid 中的列 【发布时间】:2012-12-09 19:39:58 【问题描述】:

如果我使用“*”设置 DataGrid(位于 RowDetailesTemplate 中)列的宽度 - 列缩放不起作用

<DataGrid>
...
<DataGrid.RowDetailsTemplate>
   <DataTemplate>
      <DataGrid Margin="10" Height="100">
         <DataGrid.Columns>
            <DataGridTextColumn Header="header A" Width="3*" />
            <DataGridTextColumn Header="header B" Width="2*" />
            <DataGridTextColumn Header="header C" Width="*" />
         </DataGrid.Columns>
      </DataGrid>
    </DataTemplate>
</DataGrid.RowDetailsTemplate>
</DataGrid>

但如果我用 Grid 替换 DataGrid 并使用“*”缩放设置它的列宽

<Grid Margin="5" Height="100">
   <Grid.ColumnDefinitions>
      <ColumnDefinition Width="3*"></ColumnDefinition>
      <ColumnDefinition Width="2*"></ColumnDefinition>
      <ColumnDefinition Width="*"></ColumnDefinition>
   </Grid.ColumnDefinitions>

   <TextBlock Text="header A" Background="LightGray" TextAlignment="Center" HorizontalAlignment="Stretch"></TextBlock>
   <TextBlock Text="header B" Grid.Column="1" TextAlignment="Center" HorizontalAlignment="Stretch"></TextBlock>
   <TextBlock Text="header C" Grid.Column="2" Background="LightGray" TextAlignment="Center" HorizontalAlignment="Stretch"></TextBlock>
</Grid>

如何修复 DataGrid 缩放?

解决方案:

<DataGrid HorizontalScrollBarVisibility="Disabled">
...
<DataGrid.RowDetailsTemplate>
...
</DataGrid.RowDetailsTemplate>
</DataGrid>

【问题讨论】:

DataGrid 编译成什么? 【参考方案1】:

这只是基于此question 的猜测。

设置ScrollViewer.HorizontalScrollBarVisibility="Disabled"

【讨论】:

这确实有效!虽然对我来说没有意义,但谢天谢地你节省了很多时间。

以上是关于为啥 Width="*" 不适用于位于 RowDetailsTemplate 中的 DataGrid 中的列的主要内容,如果未能解决你的问题,请参考以下文章

为啥“垂直对齐:中间;”不适用于“最小高度”?

为啥不输入“提交”不适用于表格?

占位符不适用于 Internet Explorer

为啥document.getElementById()找不到

为啥 <td th:each="i : $#numbers.sequence(0, table_width)" th:text="$rows[$i]"&g

为啥这种“嵌套连接”适用于 PDO 而不适用于 MySql cli?