我基本上是在做一个演示,所以不要问为什么。
使用 XAML 很容易绑定它:
c#代码:
public class MyData
{
public static string _ColorName= "Red";
public string ColorName
{
get
{
_ColorName = "Red";
return _ColorName;
}
}
}
XAML 代码:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:WpfApplication1"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<c:MyData x:Key="myDataSource"/>
</Window.Resources>
<Window.DataContext>
<Binding Source="{StaticResource myDataSource}"/>
</Window.DataContext>
<Grid>
<Button Background="{Binding Path=ColorName}"
Width="250" Height="30">I am bound to be RED!</Button>
</Grid>
</Window>
但我正在尝试使用 c# setBinding() 函数实现相同的绑定:
void createBinding()
{
MyData mydata = new MyData();
Binding binding = new Binding("Value");
binding.Source = mydata.ColorName;
this.button1.setBinding(Button.Background, binding);//PROBLEM HERE
}
问题出在最后一行,因为 setBinding 的第一个参数是依赖属性,但背景不是……所以我在 Button 类中找不到合适的依赖 属性。
this.button1.setBinding(Button.Background, binding);//PROBLEM HERE
但是我可以很容易地为 TextBlock 实现类似的东西,因为它具有依赖属性
myText.SetBinding(TextBlock.TextProperty, myBinding);
谁能帮我做演示?