0

我有一个跨多个页面使用的用户控件,它定义了一个标题标签和两个按钮。我希望控件能够拥有子控件,但是我遇到了绑定这些子控件的问题,因为它们位于 itemscollection 中。当我将绑定添加到 XAML 中的子控件时,它们未注册。

错误输出:System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=MyPage'. BindingExpression:Path=MyText; DataItem=null; target element is 'TextBox' (Name=''); target property is 'Text' (type 'String')

为简洁起见省略了多余的代码。

例如

XAML

<UserControl x:Class="MyControl" Name="MyControl">
    <Grid>
        <ItemsControl Name="ItemsControl" ItemsSource="{Binding ItemsSource, ElementName=MyControl}" />
    </Grid>
</UserControl>

代码背后

[ContentProperty("Items")]
public partial class MyControl : UserControl
{
    public static readonly DependencyProperty ItemsSourceProperty =
            ItemsControl.ItemsSourceProperty.AddOwner(typeof (MyControl));

    public IEnumerable ItemsSource
    {
        get { return (IEnumerable) GetValue(ItemsSourceProperty); }
        set { SetValue(ItemsSourceProperty, value); }
    }

    public ItemCollection Items
    {
        get { return ItemsControl.Items; }
    }
}

用法:

<Page x:Class="MyPage" Name="MyPage">
    <MyControl>
        <TextBox Text="{Binding MyText,
                        ElementName=MyPage,
                        UpdateSourceTrigger=PropertyChanged}" />
    </MyControl>
</Page>

代码背后

public partial class MyPage : Page, INotifyPropertyChanged
{
    private string _myText;
    public string MyText
    {
        get{ return _myText; }
        set
        {
            _myText = value;
            OnPropertyChanged("MyText");
        }
    }
}

我希望能够将 TextBox 数据绑定到MyText属性,以便每当我在后面的代码中修改它时,它都会在页面上得到更新。

4

1 回答 1

0

将我的评论转换为答案:

删除ElementName并尝试RelativeSource={RelativeSource FindAncestor, AncestorType=Page}

于 2012-12-17T16:36:40.380 回答