2012-04-17 81 views

回答

4
<DataGrid ... 
    <DataGrid.CellStyle> 
     <Style TargetType="DataGridCell"> 
      <Setter Property="Width" Value="100"/> 
      <Setter Property="Height" Value="50"/> 
     </Style> 
    </DataGrid.CellStyle> 
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> 
1

你試過設置columnWidth和rowHeight?

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

造型的DataGrid的更多信息,可以在 Styling Microsoft’s WPF datagrid找到。

+0

請更正您斷開的鏈接。 – LPL 2012-04-17 19:39:22

相關問題