简体   繁体   English

从父控件绑定到子属性

[英]Binding to child properties from parent control

I have an user control: 我有一个用户控件:

<UserControl x:Class="WpfApplication2.Control1"
         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:WpfApplication2"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<Grid>
    <StackPanel Orientation="Horizontal" Name="StackPanelInsideUserControl">
        <Label />
        <TextBox Name="TextBoxInsideUserControl" Text="Initial Text" />
        <Button Content="OK" />
    </StackPanel>
</Grid>

And I'm trying to bind to the Text property of the TextBoxInsideUserControl TextBox from a its parent like in: 我正在尝试从其父项绑定到TextBoxInsideUserControl TextBox的Text属性,例如:

<Window x:Class="WpfApplication2.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:WpfApplication2"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <local:Control1 StackPanelInsideUserControl.TextBoxInsideUserControl.Text="{Binding SomeText}" />
</Grid>

How can I achieve that? 我该如何实现? Does xaml allow us to do that? xaml是否允许我们这样做?

As requested, the comment as answer: 根据要求,将评论作为答案:

No, not really. 不,不是。 You should define a dependency property on that UserControl , bind that to the Text of the TextBox . 您应该在该UserControl上定义一个依赖项属性 ,并将其绑定到TextBox的Text。 Then you can access the text outside of the UserControl via that dependency property. 然后,您可以通过该依赖项属性访问UserControl外部的文本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM