我无法将前景色绑定到属性…
我有这个:
<TextBox Grid.Column="1" Grid.Row="1" Width="150" Margin="10,5"
IsReadOnly="True" Name="Output" FontSize="20" Foreground="{Binding Path=ForegroundColor}"/>
和:
private Brush foregroundColor;
public Brush ForegroundColor {
get { return foregroundColor; }
set {
foregroundColor = value;
OnPropertyChanged("ForegroundColor");
}
}
private void CheckBtn_Click(object sender, RoutedEventArgs e) {
if (IsPalindrome(Input.Text)) {
ForegroundColor = Brushes.Gold;
Output.Text = "Yep";
} else
Output.Text = "Nope";
}
我只是一个初学者,所以这是一个简单的项目;)
我们欢迎一些可以借鉴的资料……
对不起,我来自乌克兰
最佳答案 如果您在类后面的代码中定义了该属性,则可以这样设置窗口的DataContext:
<Window x:Class="YourWindow"
Title="Your Title"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
之后你应该能够像你想要的那样绑定该属性.