Q049. DataGrid の行の高さをセル内容に応じて自動的に変えるには?
A. DataGrid.CellStyle ・DataGrid.RowStyle でグリッド行とセルの高さを Auto に設定します。
<DataGrid > <DataGrid.RowStyle> <Style TargetType="DataGridRow"> <Setter Property="Height" Value="Auto" /> </Style> </DataGrid.RowStyle> <DataGrid.CellStyle> <Style TargetType="DataGridCell"> <Setter Property="Height" Value="Auto" /> </Style> </DataGrid.CellStyle> </DataGrid>