Hello support,
when i disable rows in a GridControl, they appear to have lower opacity.
How can i change the opacity?
A simple style setter is not working:
XAML<dxg:TableView>
<dxg:TableView.RowStyle>
<Style TargetType="dxg:RowControl">
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<Setter Property="ToolTip" Value="disabled" />
<Setter Property="IsEnabled" Value="False" />
<Setter Property="Opacity" Value="1" />
</Style>
</dxg:TableView.RowStyle>
<dxg:TableView.FormatConditions>
<dxg:FormatCondition Expression="true"
PredefinedFormatName="StrikethroughText" />
</dxg:TableView.FormatConditions>
</dxg:TableView>