本文介绍了帮助我使用ado.net中的datagridview.invoke方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我的应用程序需要在sql server数据库中进行任何更改时得到通知,而windows窗体应用程序中datagridview中的数据需要显示表中存在的当前行,并通知我已经完成了更改我书中的database.example有代码来执行所需的任务但我感到困惑的地方是应用程序使用datagridview1.Invoke()方法。 示例: - dataGridView1.Invoke((datagrid)委托(DataTable表){dataGridView1.DataSource = table;},dt); datagrid是我之前已声明的委托的名称,dt对DataTable对象有参考。 有人可以详细解释我发生了什么datagridview1.Invoke()方法。my application needs to be notified when any changes are made in the sql server database and the data in the datagridview in my windows form application needs to show the current rows present in the table also notifying me that a change has been done in the database.example in my book has the code to perform the desired task but where i am confused is where the application uses the datagridview1.Invoke() method.EXAMPLE:-dataGridView1.Invoke((datagrid)delegate(DataTable table) { dataGridView1.DataSource = table; }, dt);datagrid is the name of my delegate that i have declared earlier and dt has the refrence to the DataTable object.can someone explain me in details what''s happening in the datagridview1.Invoke() method.推荐答案 这篇关于帮助我使用ado.net中的datagridview.invoke方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-23 23:03