Quote:
|
Originally Posted by LiLo
Hi,
Are there asp.net functions to find the cursor position of a mouse?
Also, are there asp.net functions to find if the mouse cursor is within a listbox?
A C# (windows forms) code 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?
|
Yes you can do this by adding an event handler with the list box control
there is an events with listbox control
MouseEnter and MouseLeave
then assign deligate functions to these handlers
define delegete functions whan ever you want to do with these events
Code:
//add handlers
this.listBox1.MouseEnter+=new EventHandler(listBox1_MouseEnter);
this.listBox1.MouseLeave+=new EventHandler(listBox1_MouseLeave);
//define delegete functions
private void listBox1_MouseEnter(object sender, System.EventArgs e)
{
MessageBox.Show("I am in listbox");
}
private void listBox1_MouseLeave(object sender, System.EventArgs e)
{
MessageBox.Show("I am out of listbox");
}
Hope this will help you
Thanks
Abhi
Handshakeit