WPF中INotifyPropertyChanged用法与数据绑定

在WPF中进行数据绑定的时候常常会用到INotifyPropertyChanged接口来进行实现,下面来看一个INotifyPropertyChanged的案例。

下面定义一个Person类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;

namespace WpfApp
{
    public class Person:INotifyPropertyChanged
    {
        private String _name = "张三";
        private int _age = 24;
        private String _hobby = "篮球";
          
        public String Name
        {
            set
            {
                _name = value;
                if (PropertyChanged != null)//有改变
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("Name"));//对Name进行监听
                }
            }
            get
            {
                return _name;
            }
        }

        public int Age
        {
            set
            {
                _age = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("Age"));//对Age进行监听
                }
            }
            get
            {
                return _age;
            } 
        }
        public String Hobby//没有对Hobby进行监听
        {
            get { return _hobby; }
            set { _hobby = value; }
        }
        public event PropertyChangedEventHandler PropertyChanged;
    }
}
上面定义的这个Person类中,对Name和Age属性进行了监听,但是没有对Hobby进行监听。

MainWindow.xmal界面文件定义的内容如下:

<Window x:Class="WpfApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="300" Width="350">
    <Grid Name="grid"> 
        <TextBox Height="20" Text="{Binding Path=Name}"  HorizontalAlignment="Left" Margin="63,12,0,0" Name="textBox1" VerticalAlignment="Top" Width="139" />
        <TextBox Height="20"  Text="{Binding Path=Age}"  HorizontalAlignment="Left" Margin="63,48,0,0" Name="textBox2" VerticalAlignment="Top" Width="139" />
        <TextBox Height="20" Text="{Binding Path=Hobby}"  HorizontalAlignment="Left" Margin="63,82,0,0" Name="textBox3" VerticalAlignment="Top" Width="139" />
        
        <Button Content="显示用户信息" Height="26" HorizontalAlignment="Left" Margin="60,118,0,0" Name="button1" VerticalAlignment="Top" Width="144" Click="button1_Click" />
        <Button Content="修改用户信息" Height="26" HorizontalAlignment="Left" Margin="60,158,0,0" Name="button2" VerticalAlignment="Top" Width="144" Click="button2_Click" />

        <TextBlock Height="40" HorizontalAlignment="Left" Margin="13,201,0,0" Name="textBlock1"   Text="{Binding Path=Name}"  VerticalAlignment="Top" Width="88" />
        <TextBlock Height="40" HorizontalAlignment="Left" Margin="118,201,0,0" Name="textBlock2" Text="{Binding Path=Age}" VerticalAlignment="Top" Width="88" />
        <TextBlock Height="40" HorizontalAlignment="Left" Margin="222,201,0,0" Name="textBlock3" Text="{Binding Path=Hobby, Mode=TwoWay}" VerticalAlignment="Top" Width="88" />
    </Grid>
</Window>

后台代码是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApp
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private Person p1 = new Person();
        private void button1_Click(object sender, RoutedEventArgs e)
        {
            grid.DataContext = p1;//绑定数据
            p1.Name = "李四"; 
            p1.Hobby = "足球";
        } 
        private void button2_Click(object sender, RoutedEventArgs e)
        {   
            p1.Age = p1.Age + 1;
            p1.Hobby = "足球";
        }
    }
}

当点击显示用户数据的时候


下面看看这些信息具体都来自于哪儿?


由于在Person中没有对Hobby进行监听,所以p1.Hobby="足球"这个语句没有起到作用。 点击修改用户信息的时候也是不能修改绑定到界面上的对应Hobby的信息(即使是在界面处写了Mode=TwoWay,也是不能进行绑定的)。

所以使用INotifyPropertyChanged的时候,需要对要进行绑定的属性进行显示的设置的,否则绑定的时候是不能进行双向绑定的,即绑定是无效的。



  • 24
    点赞
  • 49
    收藏
    觉得还不错? 一键收藏
  • 7
    评论
当在 WPF 实现数据绑定时,通常会使用到 `INotifyPropertyChanged` 接口来通知视图(UI)更新数据。 首先,在你的数据模型(ViewModel)实现 `INotifyPropertyChanged` 接口。这可以通过在类声明添加 `: INotifyPropertyChanged` 来完成,并实现 `PropertyChanged` 事件和 `OnPropertyChanged` 方法。例如: ```csharp public class MyViewModel : INotifyPropertyChanged { private string myProperty; public string MyProperty { get { return myProperty; } set { if (myProperty != value) { myProperty = value; OnPropertyChanged(nameof(MyProperty)); } } } public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string propertyName) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } ``` 然后,在 XAML 将你的 UI 控件与 ViewModel 的属性进行绑定,使用 `{Binding}` 语法,并设置合适的 `Mode` 和 `UpdateSourceTrigger`。例如: ```xml <TextBox Text="{Binding MyProperty, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> ``` 在这个示例,`TextBox` 的 `Text` 属性与 ViewModel 的 `MyProperty` 属性进行双向绑定,并且在每次属性值发生变化时立即更新源数据。 当你在 ViewModel 修改 `MyProperty` 的值时,`OnPropertyChanged` 方法会触发 `PropertyChanged` 事件,通知绑定的 UI 控件更新显示。 这样,当 `MyProperty` 的值发生变化时,UI 控件会立即显示最新的值。 希望这能帮助到你!如果有任何进一步的问题,请随时提问。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值