0

プロジェクトでテレリック コントロール (データ グリッド ビュー) を使用しています。しかし、データ グリッドに新しい行を追加すると、前の行のテキスト (bindingSourceService.DataSource = dtservice、bindingSourceUnit.DataSource = dtunit) が消えます。私のデータグリッドビューには 3 つのコンボボックス列があります。なにが問題ですか?私を助けてください。

私のコード:

public void FactorLoad(object sender, EventArgs e)
        {
            try
            {
                var cb = new CategoriBll();
               DataTable dtcategori = cb.GetAllDataCategori();
               bindingSourceCategouri.DataSource = dtcategori;
            }
            catch (Exception ex)
            {
               ExceptionkeeperBll.LogFileWrite(ex);
            }
}
   private void DataGridViewFactorCellValueChanged(object sender, GridViewCellEventArgs e)
        {
            try
            {
                var row = DataGridViewFactor.CurrentRow;
                if ((row != null) && (row.Cells[0].IsCurrent))
                {
                    var categoryId = Convert.ToInt32(DataGridViewFactor.CurrentRow.Cells[0].Value);
                    var sb = new CategoriOptionBll();
                    DataTable dtservice = sb.ServiceGetById(categoryId);
                    bindingSourceService.DataSource = dtservice;
                }
                if ((row != null) && (row.Cells[1].IsCurrent))
                {
                    var serviceId = Convert.ToInt32(DataGridViewFactor.CurrentRow.Cells[1].Value);
                    var cbi = new CostBll();
                    var dtunit = cbi.CostById(serviceId);
                    bindingSourceUnit.DataSource = dtunit;
                }
            }
            catch (Exception ex)
            {
                ExceptionkeeperBll.LogFileWrite(ex);
            }
        }

        private void DataGridViewFactorCellEditorInitialized(object sender, GridViewCellEventArgs e)
        {
            try
            {
                var row = DataGridViewFactor.CurrentRow;
                if ((row != null) && (row.Cells[0].IsCurrent))
                {
                    var categoryId = Convert.ToInt32(DataGridViewFactor.CurrentRow.Cells[0].Value);
                    var sb = new CategoriOptionBll();
                    DataTable dtservice = sb.ServiceGetById(categoryId);
                    bindingSourceService.DataSource = dtservice;
                }
                if ((row != null) && (row.Cells[1].IsCurrent))
                {
                    var serviceId = Convert.ToInt32(DataGridViewFactor.CurrentRow.Cells[1].Value);
                    var cbi = new CostBll();
                    var dtunit = cbi.CostById(serviceId);
                    bindingSourceUnit.DataSource = dtunit;
                }
            }
            catch (Exception ex)
            {
                ExceptionkeeperBll.LogFileWrite(ex);
            }
        }
4

1 に答える 1

0

データ ソースには値が 1 つしかないため、表示されなくなります。単一の値を割り当てるのではなく、データ ソースに値を追加してみてください。

于 2013-07-18T11:27:19.360 に答える