hi,
After the background i 'd like to change the font size, style, familly and the foreground for active cell , or for selected cell.
i've seen the style property for font but it's not possible change style when it use.
I'd like to know if it's possible?
thanks,
Nathalie
You can use a Style like this:
<Style TargetType="{x:Type igDP:CellValuePresenter}"> <Setter Property="ForegroundActiveStyle"> <Setter.Value> <Style> <Setter Property="TextBlock.FontFamily" Value="Tahoma" /> <Setter Property="TextBlock.FontSize" Value="13" /> </Style> </Setter.Value> </Setter></Style>
hi, thanks josh
but it's on cell in particular.
exemple i have do for the background:
{
}
else
in fact i would like to do the thame think but with font and border of cell !
thanks