代码如下:
数量 :
元素的一个属性绑定在自身的另一个属性上
{Binding Path=PathToProperty, RelativeSource={RelativeSource Self}}
元素的一个属性绑定在父元素的属性上
{Binding Path=PathToProperty, RelativeSource={RelativeSource AncestorType={x:Type typeOfAncestor}}}
Template中的元素的属性绑定在Template使用者元素的属性上
{Binding Path=PathToProperty, RelativeSource={RelativeSource TemplatedParent}}
{TemplateBinding Path=PathToProperty}
参考: