我有一个包含ItemsSource DependenceProperty 的 UserControl,它必须绑定到内部控件的 ItemsSource 属性:
ItemsSource="{Binding ItemsSource, RelativeSource={RelativeSource Self}}"
对比
ItemsSource="{Binding ItemsSource, ElementName=controlName}"
controlName 是控件的名称。
第一个绑定不起作用,而第二个绑定起作用。我不明白区别。
有任何想法吗?
编辑:
XAML:
<UserControl x:Class="MultiSelectTreeView.MultiSelectableTreeView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
Name="multiTree" >
This does not work ---> <TreeView ItemsSource="{Binding ItemsSource, RelativeSource={RelativeSource Self}}" >
This works ---> <TreeView ItemsSource="{Binding ItemsSource, ElementName=multiTree}" >