C# winForm程序 数据绑定 更新控件问题 combobox绑定的DataSource 数据表中已经添加了新的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# winForm程序 数据绑定 更新控件问题 combobox绑定的DataSource 数据表中已经添加了新的数据相关的知识,希望对你有一定的参考价值。

小弟初学,请教个问题,搞了大半天,没弄好
combobox绑定了DataSource 数据表中添加了新的数据,可ComboBOx的下拉列表中没有,要重新关闭窗口再打开才能显示。BindingSource.ResetBindings(true);也试过了,重新绑定也试过了,就是不刷新
c#的
winForm程序
问题的关键在哪呢

例如绑定学生年级的数据

假设数据库中有表Grade,其中有两列GradeId和GradeName

新建一个类GradeService用来查询数据库中的年级信息
编写获取年级信息的GetAll()方法如下
public DataSet GetAll()

DataSet ds = new DataSet();
string sql = "select * from Grade";
SqlConnection con = new SqlConnection(SqlHelper.strConnection);
SqlDataAdapter ada = new SqlDataAdapter(sql, con);
try

con.Open();
ada.Fill(ds);

catch (Exception ex)

throw ex;

finally

con.Close();

return ds;

在设计窗体的Load代码中添加如下代码:
GradeService gradeservice = new GradeService();
cboGrade.DataSource = gradeservice.GetAll().Tables[0];
this.cboGrade.DisplayMember ="GradeName";
this.cboGrade.ValueMember ="GradeId";

这样在窗体调试时就可以看到ComboBox中显示数据库中Grade表里的年级名称了
参考技术A 今天回答别人问题用datagrid也遇到这个问题
我想原因就是数据源更新了而控件没跟着更新
comboBox1.DataSource = null;
comboBox1.DataSource = source;
解决方式目前是这样,我没找到更好的方式追问

我也是这么作的,还是没有获取到最新添加的数据

追答

不能把 我试过了 好用,你加个断点看看你的数据源是不是真获取到数据了

参考技术B 装个Timer试试 参考技术C 问题的关键是你在数据表中加了新数据 在代码中你有事件去取得新数据了吗?追问

具体怎么取数据?用哪些方法?

追答

这就看你自己了 你加数据是怎么操作的? 直接操作数据库 还是写事件加数据的 如果是直接操作的话就直接随便写的事件 写事件的话就好办了 加数据后在取就行了

追问

我是在comboBox的 keyPress事件中,向TableAdapter中加入数据后,然后又把新数据同步到数据库中。
我的本意是 把comboBox绑定到一张表units。用户在使用过程中,在comboBox手工键入列表中没有的数据,并按下回车键后,程序能自动向units表中添加新记录,并能同时,在comboBox的下拉列表中显示新添加的记录。现在,数据是保存了,控件还是不行,非要重新打开窗体才可以。

本回答被提问者采纳

WinForm 双向数据绑定

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

定义控件属性要绑定对象的类: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

 

以上是关于C# winForm程序 数据绑定 更新控件问题 combobox绑定的DataSource 数据表中已经添加了新的数据的主要内容,如果未能解决你的问题,请参考以下文章

C# winform程序 绑定listView1控件值(对应数据库表中的字段名) 循环绑定 insert into 语句中的到吗问题...

C# winform DataGridView 如何实现删除 更新 手动绑定数据源(不是在控件里指定数据源) 求大神 在线等

C# winform DataGridView控件DataSource 绑定一个表后修改cell值的问题

C# winform 类似于如下图显示用啥控件绑定并实现分页

C# winform编程 开发环境VS2010 listview控件问题

c# datagridview 滚动条问题