繁体   English   中英

在Loaded事件中设置DataContext时无法获取绑定值

[英]Can't get bound value when setting DataContext in Loaded event

我有一个显示可绑定文本的用户控件。 如果将用户控件放在窗口中并在该窗口的Loaded事件中设置DataContext,则无法在控件的Loaded事件中检索文本。 为什么?

如果我在MainWindow构造函数中设置DataContext,则一切正常。

那么在Loaded事件中设置DataContext是错误的吗?

这是我的示例代码:

<UserControl x:Class="UserControlBinding.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" 
         x:Name="thisControl"
         Loaded="OnLoaded"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<Grid>
    <TextBlock Text="{Binding TextToShow, ElementName=thisControl}" />
</Grid>

    public partial class TestControl : UserControl
{
    public string TextToShow
    {
        get { return (string)GetValue(TextToShowProperty); }
        set { SetValue(TextToShowProperty, value); }
    }
    public static readonly DependencyProperty TextToShowProperty =
        DependencyProperty.Register("TextToShow", typeof(string), typeof(TestControl), new PropertyMetadata(null));

    public TestControl()
    {
        InitializeComponent();
    }

    private void OnLoaded(object sender, RoutedEventArgs e)
    {
        Debug.WriteLine("TestControl.OnLoaded: DataContext=" + DataContext);
        Debug.WriteLine("TestControl.OnLoaded: TextToShow=" + TextToShow);
    }
}


<Window x:Class="UserControlBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:UserControlBinding"
    Loaded="OnLoaded"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <local:TestControl TextToShow="{Binding TextToBind}" />
</Grid>

    public partial class MainWindow : Window
{
    public string TextToBind
    {
        get { return (string)GetValue(TextToBindProperty); }
        set { SetValue(TextToBindProperty, value); }
    }
    public static readonly DependencyProperty TextToBindProperty =
        DependencyProperty.Register("TextToBind", typeof(string), typeof(MainWindow), new PropertyMetadata(null));


    public MainWindow()
    {
        InitializeComponent();
        //this.DataContext = this;  // if I do this it works
    }

    private void OnLoaded(object sender, RoutedEventArgs e)
    {
        Debug.WriteLine("+MainWindow.OnLoaded");
        TextToBind = "this is the text to bind";
        this.DataContext = this;
        Debug.WriteLine("-MainWindow.OnLoaded");
    }
}

调试输出为:

+MainWindow.OnLoaded
-MainWindow.OnLoaded
TestControl.OnLoaded: DataContext=UserControlBinding.MainWindow
TestControl.OnLoaded: TextToShow=

这里的问题是,当Loaded事件触发时,您只是不能依赖于完成的绑定

如果将PropertyChangedCallback附加到TextToShow属性,则可以看到在MainWindowLoaded事件中设置DataContext时,它在TestControlLoaded事件之后触发。

不需要在此处设置DataContext ,而是可以与RelativeSource进行Binding

<TextBlock Text="{Binding TextToShow, RelativeSource="{RelativeSource FindAncestor, AncestorType=UserControl}}" />

<local:TestControl TextToShow="{Binding TextToBind, RelativeSource="{RelativeSource Self}}" />

暂无
暂无

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

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