我有一个用户控件:
IsNull
我试图从其父类绑定到TextBoxInsideUserControl TextBox的Text属性,如:
<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>
我怎样才能实现这一目标? xaml允许我们这样做吗?
答案 0 :(得分:0)
根据要求,评论为答案:
不,不是真的。您应该在UserControl
上定义依赖项属性,将其绑定到TextBox
的文本。然后,您可以通过该依赖项属性访问UserControl外部的文本。