我正在使用带有WPF的MVVM灯。我想通过ViewModel根据某些特定条件设置按钮背景颜色。请建议一些方法来获得它。感谢
答案 0 :(得分:26)
你可以将背景绑定到viewmodel上的属性,诀窍是使用IValueConverter返回一个你需要的颜色的画笔,这是一个将视图模型中的布尔值转换为颜色的示例
public class BoolToColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value == null)
{
return new SolidColorBrush(Colors.Transparent);
}
return System.Convert.ToBoolean(value) ?
new SolidColorBrush(Colors.Red)
: new SolidColorBrush(Colors.Transparent);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
使用类似
的绑定表达式 "{Binding Reviewed, Converter={StaticResource BoolToColorConverter}}"
答案 1 :(得分:22)
使用触发器:
<Button>
<Button.Style>
<Style TargetType="Button">
<!-- Set the default value here (if any)
if you set it directly on the button that will override the trigger -->
<Setter Property="Background" Value="LightGreen" />
<Style.Triggers>
<DataTrigger Binding="{Binding SomeConditionalProperty}"
Value="True">
<Setter Property="Background" Value="Pink" />
</DataTrigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
在MVVM中,你也经常可以通过get-only属性在视图模型中处理这个问题,例如
public bool SomeConditionalProperty
{
get { /*...*/ }
set
{
//...
OnPropertyChanged("SomeConditionalProperty");
//Because Background is dependent on this property.
OnPropertyChanged("Background");
}
}
public Brush Background
{
get
{
return SomeConditinalProperty ? Brushes.Pink : Brushes.LightGreen;
}
}
然后你只需绑定到Background
。