1

RelativeSource在 UserControl 中使用 Self 时遇到问题。我已经构建了两个我认为在操作上相同的 UserControl,但一个有效,另一个无效。用户控件本身仅包含一个标签,我想将其内容设置为DependencyProperty控件的标题。当我将DataContextUserControl 设置为RelativeSourceSelf,并将 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>
4

1 回答 1

3

假设您的 Title 属性的代码没有引起问题(无法判断,因为它没有列出),除了拼写之外,其他一切看起来都很好:ReleativeSource->RelativeSource

于 2013-02-12T18:55:47.880 回答