码迷,mamicode.com
首页 > Windows程序 > 详细

DataGridView的按钮列的点击事件

时间:2016-11-10 16:49:28      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:row   event   idv   cell   操作   color   end   事件   index   

 

    private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
        if (e.RowIndex >= 0)
        {
            DataGridViewColumn column = dataGridView1.Columns[e.ColumnIndex];
            if (column is DataGridViewButtonColumn)
            {
                //这里可以编写你需要的任意关于按钮事件的操作~
                MessageBox.Show("按钮被点击");
            }
        }
    }

 

DataGridView的按钮列的点击事件

标签:row   event   idv   cell   操作   color   end   事件   index   

原文地址:http://www.cnblogs.com/Donnnnnn/p/6051338.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!