以下の値コンバーターを検討してください。"Red" や "Green" などの値をコンバーターに簡単に渡すことができますが、XAML で定義されたブラシを渡すにはどうすればよいでしょうか?
FalseBrush
にバインドするにはどうすればよいMyNiceBrush
ですか?
<local:MyBrushConverter x:Key="BackgroundConverter" FalseBrush="Red" TrueBrush="Green" />
<LinearGradientBrush x:Key="MyNiceBrush" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#4C7F00" />
<GradientStop Offset="1" Color="#A0B529" />
</LinearGradientBrush>
XAML では、オブジェクトのプロパティをこのコンバーターにバインドします。Background="{Binding MyClass.TrueOrFalseProperty, Converter={StaticResource BackgroundConverter} ...
ここに私のコンバーターがあります:
public class MyBrushConverter : IValueConverter
{
public Brush FalseBrush { get; set; }
public Brush TrueBrush { get; set; }
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if ((bool)value)
return TrueBrush;
else
return FalseBrush;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}