Hello,
I would like to display a custom cell Editor of a cell regarding a value of a property of the DataObject, i have done this :
<Style TargetType="{x:Type xcdg:DataCell}">
<Style.Triggers>
<DataTrigger Binding="{Binding IsFixedTime}" Value="False">
<Setter Property="ReadOnly" Value="False"/>
<Setter Property="background" Value ="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
the backgroud is displayed correctly, but the CellEditor is always shown, even if "IsFixed" = true.
Can, someone help me ?
Thanks
Moon