Bonjour
je fais ca, mais ca me donne le nom de la colonne et non pas son contenu
comment faire ?
merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 private void dataGridListe_MouseUp(object sender, MouseEventArgs e) { DataGrid.HitTestInfo hti = dataGridListe.HitTest(e.X, e.Y); if (hti.Type == DataGrid.HitTestType.Cell) { BindingManagerBase bmb = this.BindingContext[dataGridListe.DataSource,dataGridListe.DataMember]; bmb.Position = hti.Row; DataRowView drv = bmb.Current as DataRowView; MessageBox.Show(drv.Row.Table.Columns[1].ToString()); } }







Répondre avec citation
Partager