WPF Datagrid错误:System.ArgumentOutOfRangeException:'索引超出范围。必须是非负数且小于集合的大小。'

时间:2017-07-21 20:11:40

标签: c# wpf datagrid wpfdatagrid selecteditemchanged

我已经在搜索了这个主题的解决方案。但是,我找不到一个。我试图实现this question的解决方案答案,但是当向数据网格添加新行时,我得到“System.ArgumentOutOfRangeException:'索引超出范围。必须是非负的且小于收集。'“错误。在插入新行之后,程序在插入新值之前返回到先前选定的行。

private void Datagrid_Registro_SelectedCellsChanged(object sender, SelectedCellsChangedEventArgs e)
{
Registro.RegistroItems row =(Registro.RegistroItems)Datagrid_Registro.SelectedItems[0];

textbox_DocIdentidad.Text = row.DocumentoIdentidad;
comboBox_Ubicaciones.SelectedItem = row.AreaDestino;
textbox_CarnetAsignado.Text = row.CarnetAsignado;
}

0 个答案:

没有答案