在XAML里绑定 ElementName RelativeSource 属性
在程序代码里,有两种设置绑定的方法,一种是调用FrameworkElement或FrameContentElement对象的SetBinding实例方法。
例如:
InitializeCompnet();
Binding binding = new Binding();
//设置源对象
binding.Source = treeview;
//设置源属性
binding.Path = new PropertyPath("SelectedItem.Header");
//设置目标属性
currentFolder.SetBinding(TextBlock.TextProperty, binding);
另一种是调用BindingOperations类的SetBingding静态方法。可以向这个静态方法传递与上面实例方法相同的对象,但是他的第一个参数表示目标对象。
例如:BindingOperations.SetBinding(currentFolder, TextBlock.TextProperty, binding);
静态方法的好处是,第一个参数是一个DependencyObject对象,他支持对那些不是从FrameworkElement或FrameContentElement对象继承而来的对象(如Freeable对象)进行数据绑定。
如果一个绑定在剩下的应用程序生命周期中已经没有用了,可以在任何时候通过BindingOperations.ClearBinding断开该绑定,要做的就是传入一个目标对象和它的依赖属性。例如:BindingOperations.ClearBinding(currentFolder, TextBlock.TextProperty);
BindingOperations.ClearAllBindings方法是移除所有的绑定。
例如:BindingOperations.ClearAllBindings(currentFolder);
另一种清除绑定的方法是直接为目标属性设置一个新的值。
例如:currentFolder.Text = "I am no longer receiving updates.";
需要注意的是,这仅是清除单向绑定。ClearBinding方法相对而言更加灵活,因为它仍然允许依赖属性以较低的优先级从源那里(如样式触发器、属性值继承等)获得值。
实际上ClearBinding内部调用的都是目标对象的ClearValue方法清除一个本地值。
Binding除了默认构造函数外,还有一个可以传入Path的构造函数,下面两种方式实现的功能是一样的。
<TextBlock x:Name="currentFolder" DockPanel.Dock="Top"
Text="{Binding ElementName=treeView, Path=SelectedItem.Header}"
Backgroud="AliceBlue" FontSize="16" />
<TextBlock x:Name="currentFolder" DockPanel.Dock="Top"
Text="{Binding SelectedItem.Header, ElementName=treeView}"
Backgroud="AliceBlue" FontSize="16" />
这里使用ElementName来设置源对象,而没有使用Source属性来设置,这两种设置都是有效地,但在XAML里ElementName使用起来更方便,只需要给源元素一个名称就可以了,但如果要设置Source属性,目标对象必须被定义为某个ResourceDictionary中的资源,比如:
<TextBlock x:Name="currentFolder" DockPanel.Dock="Top"
Text="{Binding Source={StaticResource treeView}, Path=SelectedItem.Header}"
Backgroud="AliceBlue" FontSize="16" />
另一种指定数据源的方式是使用Binding的RelativeSource 属性,它通过与目标元素的关系获得相应的元素。RelativeSource的类型是RelativeSource,是一个标记扩展,有一下几种使用的方式:
1. 使源元素为目标元素本身
{Binding RelativeSource={RelativeSource self}}
2. 使源元素为目标元素的TemplatedParent属性
{Binding RelativeSource={RelativeSource TemplatedParent}}
3. 使源元素为最近的指定类型的父元素
{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type desiredType}}}
4. 使源元素为n层最近的指定类型的父元素
{Binding RelativeSource={RelativeSource FindAncestor, AncestorLevel=n, AncestorType={x:Type desiredType}}}
5. 使源元素为之前的数据绑定集合中的数据项
{Binding RelativeSource={RelativeSource PreviousData}}
在RelativeSource 中使用Self是很方便的,因为这种模式可以把该元素的一个属性绑定到另一个属性上,但却不需要为元素指定名称,比如下面这个例子,Slider的ToolTip绑定了它自己的值:
<Slider ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Value}">