将Bindingsource设置为Datagridview的数据源后,C#的数据列的常数发生了变化

时间:2014-10-22 10:08:22

标签: c# datatable bindingsource ordinal

我使用数据表作为绑定源的数据源。

列具有以下顺序和序号:

Before setting the datasource of datagridview

当我将bindingsource分配给我的datagridview的datasource属性时 顺序改变:

Afer settting the datasource of datagridview

最后一列(“Gesamt”)获得序数0。 我该如何避免这种影响?

这是相关代码:

     BsData.DataSource = myPR.PR_Data;  //PR_Data is the datatable ,
                                        //BsData is the bindingsource

     dgvSchoolGrade.DataSource = null;  //dgvSchoolGrade is the Datagridview
      //Before
     dgvSchoolGrade.DataSource = BsData;

     //After

非常感谢您提前! 的Sascha

0 个答案:

没有答案