码迷,mamicode.com
首页 > Windows程序 > 详细

WinForm 双向数据绑定

时间:2019-01-15 10:36:00      阅读:426      评论:0      收藏:0      [点我收藏+]

标签:pac   nta   dev   debug   handler   form   hang   button   on()   

目的:控件的属性值与对象的属性值双向绑定使窗口控件的属性值与对象的属性值保持一致。对窗口控件属性值更改后立即更新对象的属性值,对对象的属性值更改后立即更新窗口控件的属性值。

定义控件属性要绑定对象的类:Person

using System.ComponentModel;

namespace TempTest
{
    /// <summary>
    /// 要实现双向绑定需要继承System.ComponentModel.INotifyPropertyChange接口。若不继承此接口则只能单向绑定,对对象属性值的更改不会通知控件更新。
    /// </summary>
    class Person : INotifyPropertyChanged
    {
        #region 属性
        public string Name { get => mName; set { mName = value; SendChangeInfo("Name"); } }
        public string Address { get => mAddress; set { mAddress = value;SendChangeInfo("Address"); } }
        public int Age { get => mAge; set { mAge = value; SendChangeInfo("Age"); } }
        #endregion
        


        private string mName;
        private string mAddress;
        private int mAge;

        /// <summary>
        /// 属性改变后需要调用的方法,触发PropertyChanged事件。
        /// </summary>
        /// <param name="propertyName">属性名</param>
        private void SendChangeInfo(string propertyName)
        {
            if (this.PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }

        /// <summary>
        /// 实现的接口。
        /// </summary>
        public event PropertyChangedEventHandler PropertyChanged;
    }
}

Form:技术分享图片

技术分享图片
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace TempTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private Person User;
        private void Form1_Load(object sender, EventArgs e)
        {
            //创建对象初始化属性
            User = new Person()
            {
                Name = "ABC",
                Address = "中国 湖南",
                Age = 30
            };

            //绑定数据
            textBoxName.DataBindings.Add("Text", User, "Name");
            textBoxAddress.DataBindings.Add("Text", User, "Address");
            textBoxAge.DataBindings.Add("Text", User, "Age");
        }

        /// <summary>
        /// 通过另外3个textBox改变对象属性值
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void buttonChangeValue_Click(object sender, EventArgs e)
        {
            User.Name = textBoxName2.Text;
            User.Address = textBoxAddress2.Text;
            int age;
            int.TryParse(textBoxAge2.Text, out age);
            User.Age = age;
            // textBoxName,textBoxAddress,textBoxAge的Text会自动更新
        }

        /// <summary>
        /// Debug输出对象属性值
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void buttonShow_Click(object sender, EventArgs e)
        {
            Debug.WriteLine($"{User.Name},{User.Address},{User.Age}");
        }
    }
}
View Code

 

WinForm 双向数据绑定

标签:pac   nta   dev   debug   handler   form   hang   button   on()   

原文地址:https://www.cnblogs.com/it89/p/10269910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!