我想将文本块的前景色绑定到局部变量。如果变量没有值(=null),则前景色应为黑色,如果变量不为空,则前景色应为黑色或其他。是否可以通过绑定解决?
问问题
95 次
1 回答
0
你可以先使用价值转换器你像这样定义你的转换器
[ValueConversion (typeof(object), typeof(SolidColorBrush))]
public class ObjectToBrushConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value == null)
return new SolidColorBrush(Colors.Black);
return new SolidColorBrush(Colors.Red);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
然后在您的 XAML 文件中,您将转换器定义为资源
<Window.Resources>
<local:ObjectToBrushConverter x:Key="ObjectToBrushConverter"/>
</Window.Resources>
然后你绑定到你的财产并提供你的转换器
<TextBox Name="textb" Text="Hello" Foreground="{Binding Path=MyObject, Converter={StaticResource ResourceKey=ObjectToBrushConverter}}">
查看值转换器上的 msdn http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.aspx
当然,假设您在此示例中将变量定义为公共属性和 Object 类型
于 2013-02-11T09:22:51.797 回答