我有一个包含多个列和行的datagridview。 第一列包含一个复选框。 我希望用户能够选择多个复选框,然后执行操作。 例如,如果他们选择第1行和第2行中的复选框,则可以选择第1行和第2行中其他列的数据并将其传递到消息框中。
我知道我需要使用checkbox_changed事件来执行此操作。但是我在解决如何为多行执行此操作时遇到问题?
答案 0 :(得分:5)
按钮点击事件执行:
static int SelectColumnIndex = 0;
PerformAction_Click(object sender, System.EventArgs e)
{
string data = string.Empty;
foreach(DataGridViewRow row in MyDataGridView.Rows)
{
if(row.Cells[SelectColumnIndex].Value!=null &&
Convert.ToBoolean(row.Cells[SelectColumnIndex].Value) == true)
{
foreach(DataGridViewCell cell in row.Cells)
{
if(cell.OwningColumn.Index!= SelectColumnIndex)
{
data+= (cell.Value + " ") ; // do some thing
}
}
data+="\n";
}
}
MessageBox.Show(data, "Data");
}
答案 1 :(得分:1)
如果您希望用户单击某个按钮来执行操作,那么您需要处理的是按钮的Click事件,而不是CheckBox Changed事件...单击该按钮时,只需浏览所有DataGridView的行,并对带有选中复选框的行执行操作。
答案 2 :(得分:1)
static int SelectColumnIndex = 0;
PerformAction_Click(object sender, System.EventArgs e)
{
string data = string.Empty;
foreach(DataGridViewRow row in MyDataGridView.Rows)
{
if(row.Cells[SelectColumnIndex].Value != null
&&
Convert.ToBoolean(row.Cells[SelectColumnIndex].Value) == true)
{
foreach(DataGridViewCell cell in row.Cells)
{
if (cell.OwningColumn.Index != SelectColumnIndex)
{
data+= (cell.Value + " ") ; // do some thing
}
}
data+="\n";
}
}
MessageBox.Show(data, "Data");
}
答案 3 :(得分:0)
我认为你不需要任何活动 我用这段代码解决了这个问题:
//In Fill DataGridViewEvent :
DataGridViewCheckBoxColumn ChCol = new DataGridViewCheckBoxColumn();
ChCol.Name = "CheckedRow";
ChCol.HeaderText = "انتخاب";
ChCol.Width = 50;
ChCol.TrueValue = "1";
ChCol.FalseValue = "0";
dg.Columns.Insert(0, ChCol);
// In Button Event put these codes:
try
{
MessageBox.Show(row.Cells[2].Value.ToString() + " --> " +
row.Cells["CheckedRow"].Value.ToString());
}
catch
{
// Nothing Act
}
enter code here
此参数的输出: ItemID - > 0 //对于未选中的值 ItemID - > 1 //对于选中的值
现在,您可以过滤返回1的行作为操作的值 我测试了这段代码,它对我有用