Explain the mouse events that Silverlight currently supports. The mouse events that supports silverlight are
1. LostMouseCapture - occurs when an UI element lost mouse capture 2. MouseMove - occurs when the mouse position changes 3. MouseEnter - occurs when the mouse pointer enters into the bounding area of an object 4. MouseLeave - occurs when the mouse pointer leaves the bounding area of an object 5. MouseLeftButtonDown - occurs when the left mouse button is down 6. MouseLeftButtonU - occurs when the left mouse button is up followed by MouseLeftButtonDown
|