WPF绑定itemscontrol子控件

时间:2012-12-17 14:31:37

标签: c# wpf xaml

我有一个用户控件,我在几个页面中使用它来定义标题标签和两个按钮。我希望控件能够有子控件,但我遇到了绑定这些子控件的问题,因为它们在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')

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

e.g。

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属性,这样每当我在后面的代码中修改它时,它都会在页面上更新。

1 个答案:

答案 0 :(得分:0)

将我的评论转换为答案:

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