WPF System.Windows.Controls.DataGridのセルのサイズを変更することは可能ですか?
たとえば、すべてのセルのサイズ(100 x 50)にします。
WPF System.Windows.Controls.DataGridのセルのサイズを変更することは可能ですか?
たとえば、すべてのセルのサイズ(100 x 50)にします。
<DataGrid ...
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="Width" Value="100"/>
<Setter Property="Height" Value="50"/>
</Style>
</DataGrid.CellStyle>
次のようなことを試してください:
<!--you can set Name and ItemsSource to other values, this is just a sample-->
<DataGrid x:Name="dataGrid" ItemsSource="{Binding}">
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="Width" Value="100"/>
<Setter Property="Height" Value="50"/>
</Style>
</DataGrid.CellStyle>
</DataGrid>
ColumnWidth と RowHeight を設定しようとしましたか?
<DataGrid ColumnWidth="100" RowHeight="50"/>
DataGrid のスタイリングの詳細については、 Styling Microsoft の WPF datagridを参照してください。