【发布时间】:2017-11-01 10:29:58
【问题描述】:
我是 wpf 的新手,我正在尝试学习依赖属性。 我试图使用来自另一个文本框的文本来更改文本框的背景颜色。我可以使用转换器来做到这一点,但我想使用依赖属性来实现它。 这是xaml代码
<TextBox Name="setbox" Width="150" Height="50" FontWeight="DemiBold" FontSize="25" Canvas.Top="50" Canvas.Left="10"
Background="{Binding ElementName=statusbar,Path=Text,UpdateSourceTrigger=PropertyChanged,Converter={StaticResource converter1}}"/>
这是我的转换器代码
public class backgroundColourConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo
culture)
{
var backColor = Brushes.Transparent;
//changes the colour of font to White if the input to the statusbar is "state1"
if (value != null && value.ToString().Equals("state1"))
{
backColor = Brushes.White;
}
//changes the colour of font to Lavender if the input to the statusbar is "state2"
else if (value != null && value.ToString().Equals("state2"))
{
backColor = Brushes.Lavender;
}
//changes the colour of font to Ivory if the input to the statusbar is "state3"
else if (value != null && value.ToString().Equals("state3"))
{
backColor = Brushes.Ivory;
}
//changes the colour of font to Green if the input to the statusbar is "state4"
else if (value != null && value.ToString().Equals("state4"))
{
backColor = Brushes.Green;
}
return backColor;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
这工作正常,但我想使用dependecy 属性来实现它。 提前致谢
【问题讨论】:
-
文本是一个依赖属性。你到底想做什么?
-
我正在尝试使用自定义的依赖属性来更改文本框的背景颜色。
-
然后发布您自定义的依赖属性。
-
我真正想做的是创建一个由标签和文本框组成的用户控件。并从主窗口更改背景。
标签: c# wpf dependency-properties ivalueconverter