質問

I try to stylize DataGridTextColumn setting Header and Cell styles separatly:

   <Style x:Key="headerStyle">
            <Setter Property="DataGridColumnHeader.Background" ... />
   ...

    <Style x:Key="cellStyle">
            <Setter Property="DataGridCell.Background" ... />
  ...


<DataGrid>
  <DataGrid.Columns>
     <DataGridTextColumn 
          HeaderStyle="{StaticResource ResourceKey='headerStyle'}" 
          CellStyle="{StaticResource ResourceKey='cellStyle'}" ... />

Can I stylize DataGridTextColumn Header, Cell and other properties in one style declaration?

役に立ちましたか?

解決

As far as i can tell that might be impossible since DataGridTextColumn does not provide a Template or Style property of its own which could be used to set the other styles collectively.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top