Mouse events that Silverlight currently supports

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
MouseLeftButtonDown and MouseLeftButtonUp in Silverlight
The difference is the action of the button. Once mouse button is pressed MouseLeftButtonDown event is invoked...
What is the function used for removing an event listener?
The method removeEventListener() is used for deleting an event listener...
How would you implement Drag-and-drop in Silverlight?
Drag and drop in Silverlight can be implemented by using Drag Drop Manager by using DragSource and DropTarget controls...
Post your comment