简单的XAML绑定错误

时间:2011-07-27 12:57:55

标签: c# .net wpf xaml data-binding

为什么不进行此绑定更新?

MainWindow.xaml

<Window x:Class="WpfApplication12.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfApplication12"
        Height="350" Width="525">
    <StackPanel>
        <local:UserControl1 x:Name="usr" />
        <TextBlock Text="{Binding ElementName=usr, Path=txt.Text}" />
    </StackPanel>
</Window>

UserControl1.xaml

<UserControl x:Class="WpfApplication12.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <TextBox Text="qwe" x:Name="txt" />
</UserControl>

1 个答案:

答案 0 :(得分:6)

UserControl中的TextBox由于其保护级别而无法访问,也是一个字段,您永远无法绑定到那些。您需要在UserControl后面的代码中公开它作为公共属性。

public TextBox Txt
{
    get { return txt; }
}

编辑由于Henk Holterman指出您可能不想公开整个TextBox,因此您可以定义TextBox内部绑定的依赖项属性。