凝霜若雪

博客园 首页 新随笔 联系 订阅 管理
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        
{
            
if (e.ColumnIndex > 1 && e.ColumnIndex < 5)
            
{
                
bool t = (bool)dataGridView1[e.ColumnIndex, e.RowIndex].Value;
                t 
= !t;
                dataGridView1[e.ColumnIndex, e.RowIndex].Value 
= t;
                dataGridView1.CurrentCell 
= dataGridView1[0, e.RowIndex];
                dataGridView1.CurrentCell 
= dataGridView1[e.ColumnIndex, e.RowIndex];
            }

        }
原创
posted on 2007-12-17 23:38  顺易  阅读(986)  评论(2编辑  收藏  举报