datagridview点击单元格中列的按钮事件

//列中的按钮点击事件
        private void dataGridViewTemplate_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            //MessageBox.Show(this.dataGridViewTemplate.CurrentRow.Cells[2].Value.ToString());
        }

 

你可能感兴趣的:(datagridview)