我正在 c# 中制作一个 Windows 应用程序,我想从 gridview 检索值到 gridview 单元格单击的清单框,并且值已在复选框中选中帮助我不知道该怎么做..
问问题
303 次
1 回答
0
尝试这个 ,
private void yourGrid_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (yourGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value != null)
{
yourCheckListBox.Items.Add(yourGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString());
}
}
您可以在此处参考如何将数据添加到 checkBoxList !
或者试试这个,
private void yourGrid_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (yourGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value != null)
{
string selectedValue =yourGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
yourCheckListBox.Items.Add(new BindingList<Binder> { new Binder { Name = selectedValue } });
yourCheckListBox.Invalidate();
yourCheckListBox.Update();
yourCheckListBox.Refresh();
}
}
于 2013-05-31T10:22:15.317 回答