在数据网格视图中保存数据时,如何摆脱“Systems.Windows.Forms”消息?

问题描述 投票:0回答:1

Screenshot 2023-04-16 210602

尝试重新启动我的程序

here is my code

c# winforms windows-forms-designer
1个回答
0
投票

保存数据前需要先结束数据网格视图控件的编辑模式。您可以通过调用 DataGridView 控件的 EndEdit() 方法来完成此操作。

举个例子:

 dataGridView1.EndEdit();
    // Save the changes to the underlying data source
 // (assuming that the data source is a DataTable)
     DataTable dataTable = (DataTable)dataGridView1.DataSource;
        dataTable.AcceptChanges();
© www.soinside.com 2019 - 2024. All rights reserved.