How to open a form when click on Datagrid in C#
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Look into the dataGrid MouseUp event and DataGrid.HitTestInfo (to check if a row was clicked) Then just call your form as normal Form1 f = new Form1(); f.show();
-
Look into the dataGrid MouseUp event and DataGrid.HitTestInfo (to check if a row was clicked) Then just call your form as normal Form1 f = new Form1(); f.show();