ZhiYi
March 20th, 2006, 03:58 AM
Hi,
Are there Asp.Net functions to find the cursor position of a mouse?
Also, are there functions to find if the mouse cursor is within a listbox?
A C# code (windows form) sample is shown below:
Listbox lb; //lb is a listbox
Point cpos = lb.PointToClient(Cursor.Position); //find coordinates of mouse
if(lb.ClientRectangle.Contains(cpos)) //if mouse cursor is within the listbox
Are there any asp.net functions which can do the same as the above c# methods?
Are there Asp.Net functions to find the cursor position of a mouse?
Also, are there functions to find if the mouse cursor is within a listbox?
A C# code (windows form) sample is shown below:
Listbox lb; //lb is a listbox
Point cpos = lb.PointToClient(Cursor.Position); //find coordinates of mouse
if(lb.ClientRectangle.Contains(cpos)) //if mouse cursor is within the listbox
Are there any asp.net functions which can do the same as the above c# methods?