1

WPF System.Windows.Controls.DataGridのセルのサイズを変更することは可能ですか?

たとえば、すべてのセルのサイズ(100 x 50)にします。

4

3 に答える 3

4
<DataGrid ...
    <DataGrid.CellStyle>
        <Style TargetType="DataGridCell">
            <Setter Property="Width" Value="100"/>
           <Setter Property="Height" Value="50"/>
        </Style>
    </DataGrid.CellStyle>
于 2012-04-17T19:14:26.833 に答える
1

次のようなことを試してください:

    <!--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>
于 2012-04-17T19:18:45.203 に答える
1

ColumnWidth と RowHeight を設定しようとしましたか?

 <DataGrid ColumnWidth="100" RowHeight="50"/>

DataGrid のスタイリングの詳細については、 Styling Microsoft の WPF datagridを参照してください。

于 2012-04-17T19:22:57.997 に答える