我有一個方法,更新包含類型DataGridViewComboBoxCell的列,早期ComboBoxCell爲空,選擇產品和ComboBoxCell更新時添加新記錄做得很好,但當我修改它發送異常: 「 DataGridViewComboBoxCell值無效「 如果您在重新分配DataSource屬性時不適用。「DataGridViewComboBoxCell值無效」。屬性DataSource
這裏的方法:
private void CargarTipoGasto(ref DataGridViewComboBoxCell ComboColumn)
{
ComboColumn.DataSource = from oPro in dtContext.tblProducto
where oPro.ProductoId == objProducto.ProductoId
from oMat in dtContext.tblMatrizDeCuentasGD
where oMat.Partida.Substring(0,3) ==
oPro.tblObjetoGasto.ObjetoGastoId.Substring(0,3)
from oTipGas in dtContext.tblTipoGasto
where oMat.TipoGasto == oTipGas.TipoGastoId
select oTipGas;
ComboColumn.ValueMember = TIPOGASTO_ID;
ComboColumn.DisplayMember = TIPOGASTO_VALOR;
}
verique沒有空值,該引用以及
非常感謝你的幫助