private void reversed_ToolStripMenuItem_Click(object sender, EventArgs e)
{
foreach ( DataGridViewRow drw in this.dataGridView1.Rows)
{
this.textBox1.Focus();
if (drw.Cells[0].Value == null)
{
drw.Cells[0].Value = true;
}
else
{
drw.Cells[0].Value = !(bool)drw.Cells[0].Value;
}
}
{
foreach ( DataGridViewRow drw in this.dataGridView1.Rows)
{
this.textBox1.Focus();
if (drw.Cells[0].Value == null)
{
drw.Cells[0].Value = true;
}
else
{
drw.Cells[0].Value = !(bool)drw.Cells[0].Value;
}
}
}