This is probably something stupid. I'm just trying to set an alternating row color for my sfdatagrid, following examples. Using v31.2.12.
<Style x:Key="alternatingRowStyle" TargetType="sf:VirtualizingCellsControl">
<Setter Property="Background" Value="Blue"/>
</Style>
Errors:
- Error XLS0431 Invalid value for property 'Property': 'Background' MyProjectName C:\Users\Me\source\repos\MyProject\MyProject\UserControls\MyUserControl.xaml 26
- Error (active) MC4005 Cannot find the Style Property 'Background' on the type 'Syncfusion.Windows.Controls.Cells.VirtualizingCellsControl'. Line 26 Position 21.
MyProjectName
C:\Users\Me\source\repos\MyProject\MyProject\UserControls\MyUserControl.xaml 26
Even stranger is both intellisense and 'go to definition' finds the property just fine. Only the compiler fails.