我RelativeSource
在 UserControl 中使用 Self 时遇到问题。我已经构建了两个我认为在操作上相同的 UserControl,但一个有效,另一个无效。用户控件本身仅包含一个标签,我想将其内容设置为DependencyProperty
控件的标题。当我将DataContext
UserControl 设置为RelativeSource
Self,并将 Label 绑定到Path=Title
一切正常时。但是,如果我将标签绑定到,RelativeSource FindAncestor, AncestorType{x:Type UserControl}}, Path=Title
那么它会因 TargetInvocationException 而失败。
关于我做错了什么的任何想法。
这是有效的 UserControl 的 XAML:
<UserControl x:Class="UserControlBinding.Controls.MyLabelControl1"
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"
d:DesignHeight="300" d:DesignWidth="300"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Grid>
<Label Content="{Binding Path=Title}"></Label>
</Grid>
</UserControl>
这是失败的代码的 XAML
<UserControl x:Class="UserControlBinding.Controls.MyLabelControl2"
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"
xmlns:local="clr-namespace:UserControlBinding.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Label Content="{Binding ReleativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:MyLabelControl2}}, Path=Title}"></Label>
</Grid>
</UserControl>