即使用户控件的用户更改了名称,为什么仍绑定到用户控件中的elementName仍起作用?

时间:2019-09-12 09:09:02

标签: c# wpf xaml binding

我有以下非常简单的WPF应用程序:

用户控件: XAML:

<UserControl x:Class="WPFUserControlTest.TestControl"
         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:WPFUserControlTest"
         mc:Ignorable="d" 
         d:DesignHeight="450" d:DesignWidth="800"
         x:Name="root">
<Grid>
    <TextBlock Text="{Binding ElementName=root, Path=InputString}"/>
</Grid>

后面的代码:

namespace WPFUserControlTest
{
    public partial class TestControl : UserControl
    {
        public TestControl()
        {
            InitializeComponent();
        }

        public string InputString
        {
            get { return (string)GetValue(InputStringProperty); }
            set { SetValue(InputStringProperty, value); }
        }

        public static readonly DependencyProperty InputStringProperty =
            DependencyProperty.Register("InputString", typeof(string), typeof(TestControl), new PropertyMetadata(""));
    }
}

我的主窗口:

<Window x:Class="WPFUserControlTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WPFUserControlTest"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <StackPanel>
        <local:TestControl x:Name="Mercedes" InputString="Mercedes"/>
        <local:TestControl InputString="Volvo"/>
        </StackPanel>
    </Grid>
</Window>

我想知道的是,即使主窗口更改了控件的名称,使用ElementName的用户控件内的绑定似乎也可以正常工作。 是在编译时以某种方式在控件中内部完成此绑定吗?

当我在实时可视树中查看该控件时,我看到其中一个控件实例的名称为“ root”,另一个控件实例的名称为“ mercedes”。两者仍然都能按预期工作...

1 个答案:

答案 0 :(得分:1)

您应该阅读XAML namescopes。名称“ Mercedes”仅适用于窗口的名称范围,而“ root”仅适用于UserControl的名称范围。

该窗口不能将UserControl称为“根”,因为它不属于同一名称范围。