我正在尝试将 MainWindow 中的一些数据绑定(bind)到第二个文件(类型:UserControl)。第二个 xaml 文件应包含来自 TabItem 的数据。
我找到了这个答案:wpf : Bind to a control in another xaml file
但不知何故我没有得到它,也许是因为我是 wpf 和 xaml 的新手。

我做了一个简短的例子来说明我的问题:

主窗口:

<Window x:Class="BindingBetweenFiles.MainWindow"
...
xmlns:local="clr-namespace:BindingBetweenFiles"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
    <TabControl Height="200">
        <TabItem Header="Tab 1">
            <local:Tab1 />
        </TabItem>
    </TabControl>
    <TextBlock Name="txtblock1">This text should be shown in the tab.</TextBlock>
</StackPanel>
</Window>

Tab1(TabItem 的内容):
<UserControl x:Class="BindingBetweenFiles.Tab1"
         ...
         xmlns:local="clr-namespace:BindingBetweenFiles"
         mc:Ignorable="d"
         DataContext="local:MainWindow"
         d:DesignHeight="300" d:DesignWidth="300">
<Grid>
    <Label Content="{Binding DataContext.txtblock1.Text, RelativeSource={
                     RelativeSource AncestorType={x:Type local:MainWindow}}}"/>
</Grid>

请问是DataContext的声明有误还是绑定(bind)有问题?

我非常感谢您能提供的任何帮助。

最佳答案

假设您想要的是能够将 string 绑定(bind)到 Tab1 “文本”,请在 DependencyProperty 的代码隐藏中创建 UserControl :

public string TabText
{
    get { return (string)GetValue(TabTextProperty); }
    set { SetValue(TabTextProperty, value); }
}
public static readonly DependencyProperty TabTextProperty = DependencyProperty.Register("TabText", typeof(string), typeof(Tab1), new PropertyMetadata("Default"));

然后在 Tab1 XAML 中:
<UserControl x:Class="BindingBetweenFiles.Tab1"
     ...
     xmlns:local="clr-namespace:BindingBetweenFiles"
     mc:Ignorable="d"
     DataContext="local:MainWindow"
     d:DesignHeight="300" d:DesignWidth="300"
     x:Name="tab1Control">
<Grid>
    <Label Content="{Binding ElementName=tab1Control, Path=TabText"/>
</Grid>

然后在您的 Window XAML 中:
<local:Tab1 TabText="The text you want to place."/>

或者你也可以绑定(bind)到 TabText,例如:
<local:Tab1 TabText="{Binding SomeProperty}"/>

关于c# - wpf 绑定(bind)到另一个 xaml 文件中的元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37793058/

10-17 01:13