Réponse acceptée !
Salut,
Utilise l'évènement CellMouseDoubleCLick de ton datagridview
tonDataGridView.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.tonDataGridView_CellMouseDoubleClick);
private void tonDataGridView_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { Form f = new Form(); f.Show(); }
|