将动态值应用于UWP RadDataGrid中的Setter属性

时间:2019-02-22 22:08:09

标签: c# xaml uwp telerik telerik-grid

我的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不支持以样式绑定到属性。那么,我该如何实现呢?

预先感谢您的帮助。

0 个答案:

没有答案