13

我试图通过将 ViewModel 模型放入后面的代码中并将 DataContext 绑定为“this”来简化一些代码,但它的工作方式似乎有所不同,在以下示例中:

为什么单击按钮时,即使调用了 OnPropertyChanged("Message"),绑定到“Message”的 TextBlock 也不会更改?

XAML:

<Window x:Class="TestSimple223.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <StackPanel HorizontalAlignment="Left">
        <Button Content="Button" 
                Click="button1_Click" />
        <TextBlock 
            Text="{Binding Path=Message, Mode=TwoWay}"/>
        <TextBlock
            x:Name="Message2"/>
    </StackPanel>
</Window>

代码背后:

using System.Windows;
using System.ComponentModel;

namespace TestSimple223
{
    public partial class Window1 : Window
    {
        #region ViewModelProperty: Message
        private string _message;
        public string Message
        {
            get
            {
                return _message;
            }

            set
            {
                _message = value;
                OnPropertyChanged("Message");
            }
        }
        #endregion

        public Window1()
        {
            InitializeComponent();
            DataContext = this;

            Message = "original message";
            Message2.Text = "original message2";
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            Message = "button was clicked, message changed";
            Message2.Text = "button was click, message2 changed";
        }

        #region INotify
        public event PropertyChangedEventHandler PropertyChanged;

        protected void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        } 
        #endregion


    }
}
4

1 回答 1

26

您尚未将您的课程标记为可用于属性更改通知。将标题更改为

public partial class Window1 : Window, INotifyPropertyChanged

仅仅因为您实现了这些方法并不意味着 WPF 知道一个类支持更改通知 - 您需要通过使用 INotifyPropertyChanged 标记它来告诉它。这样,绑定机制可以将您的类识别为潜在的更新目标。

于 2009-10-29T14:33:23.113 回答