C# 通过bindingsource将textbox绑定到对象属性未刷新

C# 通过bindingsource将textbox绑定到对象属性未刷新,c#,object,binding,textbox,bindingsource,C#,Object,Binding,Textbox,Bindingsource,这里的目标是使用BindingSource+对象作为数据源和文本框来显示对象的属性值 我面临的问题是,TextBox没有反映底层对象的属性值更改 正如中国人所说,一张图片等于一千个单词,下面的演示代码演示了我所面临的问题。 因此,当单击btnAssignDataSource按钮时,文本框会得到更新。 我希望当绑定属性更改(btnChangePropertyValue)时,更改会反映到文本框中。您是否尝试过这个方法。textBox1.DataBindings.Add(“Text”,dsSourc

这里的目标是使用BindingSource+对象作为数据源和文本框来显示对象的属性值

我面临的问题是,TextBox没有反映底层对象的属性值更改

正如中国人所说,一张图片等于一千个单词,下面的演示代码演示了我所面临的问题。

因此,当单击btnAssignDataSource按钮时,文本框会得到更新。
我希望当绑定属性更改(btnChangePropertyValue)时,更改会反映到文本框中。

您是否尝试过这个方法。textBox1.DataBindings.Add(“Text”,dsSource,“BindingName”)

在调用btnChangePropertyValue事件后,是否可以尝试重置绑定。是的,从一开始就尝试过,但不起作用。唯一的方法是从文本框中删除绑定并再次添加。触发属性事件更改,使该部件正常工作。可能与绑定到textbox有关。在属性更改后添加此项会起作用
this.textBox1.DataBindings[0]。ReadValue()using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.CompilerServices;


namespace TextBoxDataSourceBindingDemo
{


    public partial class Form1 : Form
    {
        private BindingSource dsSource;
        private BindingDemoClass bDemoClass;
        public Form1()
        {
            InitializeComponent();
            bDemoClass = new BindingDemoClass();
            dsSource = new BindingSource();

            bDemoClass.BindingName = "DemoBinding";
            this.textBox1.DataBindings.Add(new Binding("Text", dsSource, "BindingName",true,DataSourceUpdateMode.OnPropertyChanged));
        }

        private void btnAssignDataSource_Click(object sender, EventArgs e)
        {
           //Setting the datasource is not enough to 
           //update the related textbox
           //refresh must be explicity called ?
           dsSource.DataSource = bDemoClass;
           dsSource.ResetBindings(true);
        }

        private void btnChangePropertyValue_Click(object sender, EventArgs e)
        {
            //Here after setting the property value
            //the textbox should be update with the new value; correct ?
            bDemoClass.BindingName = "DemoBinding2";
        }
    }
    //Demo class used as datasource  
    public class BindingDemoClass : INotifyPropertyChanged
    {
        private string _BindingName = String.Empty;

        public string BindingName
        {
            get { return _BindingName; }
            set
            {
                if (!String.Equals(_BindingName, value))
                {
                    _BindingName = value;
                    NotifyPropertyChanged();
                }
            }
        }

        private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }


        #region INotifyPropertyChanged Members

        public event PropertyChangedEventHandler PropertyChanged;

        #endregion
    }
}