DataGridView 使用CheckBox选中行_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > DataGridView 使用CheckBox选中行

DataGridView 使用CheckBox选中行

 2013/12/11 15:09:11  南方青年  博客园  我要评论(0)
  • 摘要:在winform中使用checbox很多。上次那个项目里就用到了,写了一个不太好用,后来翻阅了一下微软提供的样码,我觉得有必要给大家分享一下。//ThiseventhandlermanuallyraisestheCellValueChangedevent//bycallingtheCommitEditmethod.publicvoidDataGridView1_CurrentCellDirtyStateChanged(objectsender,EventArgse){if
  • 标签:使用 view tag

在winform中使用checbox很多。上次那个项目里就用到了,写了一个不太好用,后来翻阅了一下微软提供的样码,我觉得有必要给大家分享一下。

        // This event handler manually raises the CellValueChanged event
        // by calling the CommitEdit method.
        public void DataGridView1_CurrentCellDirtyStateChanged(object sender,
            EventArgs e)
        {
            if (DataGridView1.IsCurrentCellDirty)
            {
                DataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit);
            }
        }

        // If a check box cell is clicked, this event handler disables  
        // or enables the button in the same row as the clicked cell.
        public void DataGridView1_CellValueChanged(object sender,
            DataGridViewCellEventArgs e)
        {
            if (DataGridView1.Columns[e.ColumnIndex].Name == "CheckBoxs")
            {


                DataGridViewCheckBoxCell checkCell =
                    (DataGridViewCheckBoxCell)DataGridView1.
                    Rows[e.RowIndex].Cells["CheckBoxs"]; 
                if ((Boolean)checkCell.Value)
                { 
                     //处理选中
//do something
} DataGridView1.Invalidate(); } }

 

发表评论
用户名: 匿名