触发DataGridView的CellClick事件

Posted yuandong1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了触发DataGridView的CellClick事件相关的知识,希望对你有一定的参考价值。

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8.   
  9.   
  10. namespace WindowsFormsApplication2  
  11. {  
  12.     public partial class Form1 : Form  
  13.     {  
  14.         public Form1()  
  15.         {  
  16.             InitializeComponent();  
  17.         }  
  18.   
  19.   
  20.         private void Form1_Load(object sender, EventArgs e)  
  21.         {  
  22.             DataTable dt = new DataTable();  
  23.             dt.Columns.Add("ID");  
  24.             dt.Columns.Add("Name");  
  25.             dt.Columns.Add("Age");  
  26.             for (int i = 0; i < 5; i++)  
  27.             {  
  28.                 dt.Rows.Add();  
  29.                 dt.Rows[i][0] = i;  
  30.                 dt.Rows[i][1] = i.ToString() + "Name";  
  31.                 dt.Rows[i][2] = (i + 1) * 5;  
  32.             }  
  33.   
  34.   
  35.             dataGridView1.DataSource = dt;  
  36.         }  
  37.   
  38.   
  39.         //第一个参数是第几列的意思,第二个参数是第几行的意思。    
  40.         //所有的参数是以0开始的。   
  41.         private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)  
  42.         {  
  43.             MessageBox.Show(e.RowIndex.ToString() + ":" + e.ColumnIndex.ToString());  
  44.         }  
  45.   
  46.   
  47.         private void button1_Click(object sender, EventArgs e)  
  48.         {  
  49.             //dataGridView1_CellClick(dataGridView1, new DataGridViewCellEventArgs(1, 2));  
  50.             dataGridView1_CellClick(dataGridView1, new DataGridViewCellEventArgs(dataGridView1.SelectedCells[0].ColumnIndex, dataGridView1.SelectedCells[0].RowIndex));  
  51.         }  
  52.     }  
  53. }  

以上是关于触发DataGridView的CellClick事件的主要内容,如果未能解决你的问题,请参考以下文章

2015.1.10 解决DataGridView SelectionChanged事件自动触发问题

C#winForm怎么禁用dataGridView的cellclick事件(急急急!)

C# datagridview 点击checkbox列做判断

cellclick事件具体写在哪里??比如我想点到某列就弹出窗体

C#中dataGridView单击事件怎么写?

RadGridView 检测 CellClick 事件按钮