我有一个简单的数据网格,其中列出了SQLSERVER表中的一堆记录。数据网格的填充没有任何问题。我想单击一行并将相应的数据加载到在其旁边创建的文本框中。到目前为止很简单。
这是我的cellclick事件代码
private void dataGridVieworderitems_CellClick(object sender, DataGridViewCellEventArgs e)
{
{
//try
//{
//if (dataGridVieworderitems.SelectedRows.Count > 0) // make sure user select at least 1 row
{
string jobId = dataGridVieworderitems.SelectedRows[0].Cells[0].Value + string.Empty;
string standpack = dataGridVieworderitems.SelectedRows[0].Cells[1].Value + string.Empty;
string description = dataGridVieworderitems.SelectedRows[0].Cells[2].Value + string.Empty;
string price = dataGridVieworderitems.SelectedRows[0].Cells[3].Value + string.Empty;
string itemType = dataGridVieworderitems.SelectedRows[0].Cells[4].Value + string.Empty;
string notes = dataGridVieworderitems.SelectedRows[0].Cells[5].Value + string.Empty;
labelidvalue.Text = jobId;
labelstandpackvalue.Text = standpack;
labeldescriptionvalue.Text = description;
textBoxprice.Text = price;
labeltypevalue.Text = itemType;
textBoxnotes.Text = notes;
}
//}
//catch (Exception)
//{
// MessageBox.Show("something went wrong!");
//}
}
}
我故意将If语句注释掉,然后尝试catch块以生成错误。
我收到以下错误。
未处理System.ArgumentOutOfRangeException HResult = -2146233086
邮件=索引超出范围。必须为非负且小于
集合的大小。参数名称:index ParamName = index...。
...
它是WINFORM和c#。。datagrid视图包含数据。但是它说索引超出范围。有人能指出我正确的方向吗?
这就是我填充网格的方式
public DataTable GetStaffCurrentOrderItems()
{
try
{
DataTable dtstaffcurrentorderlist = new DataTable();
string connString = System.Configuration.ConfigurationManager.ConnectionStrings["nav"].ConnectionString;
using (SqlConnection con = new SqlConnection(connString))
{
using (SqlCommand cmd = new SqlCommand("select [ID],standpack as [Item], item_description as [Description], '$'+convert(varchar(5),price) as Price,item_type as [Item Type],notes as [Notes] from tbl_staff_orders_items", con))
{
if (con.State == ConnectionState.Open)
{
con.Close();
}
con.Open();
SqlDataReader reader = cmd.ExecuteReader();
dtstaffcurrentorderlist.Load(reader);
}
con.Close();
}
return dtstaffcurrentorderlist;
}
catch (Exception)
{
return null;
}
}
最佳答案
在您的cellClick
事件处理程序中进行检查,以处理像这样的null
if (dataGridVieworderitems.CurrentCell == null ||
dataGridVieworderitems.CurrentCell.Value == null ||
e.RowIndex == -1) return;
这将解决您的问题,因为它会在单击
GridView
的单元格时检查所有可能的null。如果没有null,则其他部分将为您提供数据。希望能帮助到你!
关于c# - Winform Datagridview cellclick错误-索引超出范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42990943/