how can i get currser postion
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi, in flex grid. i set focus a cell. at this time i want to get currosor postion x,y how can i do this vipin paliwal
-
hi, in flex grid. i set focus a cell. at this time i want to get currosor postion x,y how can i do this vipin paliwal
use Mouse Move event of data grid. 1.create two class level integer variable
private int _xGrid=0; private int _yGrid=0;
2.now in mouse move event set value of these variablesprivate void dataGrid_MouseMove(sende , even e) { _xGrid=e.X; _yGrid=e.Y; }
3.use these values whereever you want