簡體   English   中英

數據綁定不適用於用戶控件-PropertyChanged始終為null

[英]Databinding not working for user control - PropertyChanged always null

我的數據綁定有問題。 我擁有的一個測試應用程序如下所示:

有一個主窗口:

<Window x:Class="WpfApplication2.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:Controls="clr-namespace:WpfApplication2"
        x:Name="main"
        Title="MainWindow" >
    <StackPanel >
        <Button Content="Button" Click="Button_Click"/>
        <Controls:UserControl1 />
    </StackPanel>
</Window>

和一個用戶控件:

    <UserControl x:Class="WpfApplication2.UserControl1"
                 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" 
                 mc:Ignorable="d" 
                 x:Name="uc"
                 >
        <Grid >
            <TextBox Width="40" Text="{Binding ElementName=main, 
Path=Status, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
        </Grid>
    </UserControl>

我想單擊主窗口上的按鈕以更新用戶控件中文本框的值:

MainWindow文件的代碼:

namespace WpfApplication2
{

    public partial class MainWindow : Window, INotifyPropertyChanged
    {
        public MainWindow()
        {
            InitializeComponent();
        }
        public event PropertyChangedEventHandler PropertyChanged;
        private void RaisePropertyChanged(string propertyName)
        {
            if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }

        private string _status;
        public string Status
        {
            get { return _status; }
            set
            {
                if (value != _status)
                {
                    _status = value;
                    RaisePropertyChanged("Status");
                }
            }
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if (Status == "one")
                Status = "two";
            else
                Status = "one";
        }
    }
}

以及UserControl的代碼:

namespace WpfApplication2
{
        public partial class UserControl1 : UserControl, INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;
        private void RaisePropertyChanged(string propertyName)
        {
            if (PropertyChanged != null) PropertyChanged(this, e: new PropertyChangedEventArgs(propertyName));
        }

        public UserControl1()
        {
            InitializeComponent();
        }
    }
}

我不明白為什么它不起作用,但是PropertyChanged始終為null。 這個例子是我能想到的最簡單的形式...

據我所知,您正在嘗試使用ElementName綁定訪問父窗口,但這是不可能的。 但是,您可以使用相對源綁定來獲取父窗口:

<TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=Window}, Path=Status}" ... />

后續編輯:

您的子用戶控件應如下所示:

<UserControl 
         ...
         x:Name="usr">
   <Grid>
      <TextBlock Text="{Binding Message, ElementName=usr}"/>
   </Grid>
</UserControl>

然后,您將需要創建一個名為“消息”的依賴項屬性(這只是一個示例,我不確定您要如何調用此屬性)。

public partial class YourUserControl: UserControl
{
    public string Message
    {
        get { return (string)GetValue(MessageProperty); }
        set { SetValue(MessageProperty, value); }
    }

    // Using a DependencyProperty as the backing store for Message.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty MessageProperty =
        DependencyProperty.Register("Message", typeof(string), typeof(YourUserControl), new PropertyMetadata(""));

    public UserControl1()
    {
        InitializeComponent();
    }
}

然后,當您在父用戶控件中聲明此屬性時,只需將Message屬性的綁定設置為您需要在父用戶控件中綁定的任何屬性:

<YourNamespace:YourUserControl Message="{Binding PropertyName, ElementName=elementName}" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM