我的RadDataGrid中有此XAML,它根据模型中定义的ValidateModuleBank属性返回的值将所选行的背景颜色更改为红色。
<tg:RadDataGrid.Resources>
<Style TargetType="gridPrimitives:SelectionRegionBackgroundControl">
<Setter Property="Background" Value="{Binding ValidateModuleBank,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
</Style>
</tg:RadDataGrid.Resources>
我在网上看了一下,它说UWP不支持以样式绑定到属性。那么,我该如何实现呢?
预先感谢您的帮助。