Datagridview full row selection but get single cell value

后端 未结 16 1147
傲寒
傲寒 2020-12-02 12:12

I have a datagridview that is a full row select. How would I grab the data from only a certain cell no matter what cell in the row was clicked on since it highlights the ent

16条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 12:46

    For those who could not fire the click event, they may use following code

    public Form1()
                {
                    InitializeComponent();
                    this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
                }
    

提交回复
热议问题