MouseRightButtonUp (UIElement)
Occurs when the right mouse button is released while the mouse is over the object (or the mouse is captured).
AddEventListener Parameters
|
token |
integer A token that is returned from the function, which you can optionally retain as a variable. If you intend to call RemoveEventListener to remove the handler, you will need this token. |
|
eventhandlerFunction |
object The name of your event handler function as it is defined in script. When used as an AddEventListener parameter, quotation marks around the function name are not required. (See the "Remarks" section.) |
Event Handler Parameters
|
sender |
object The object that invoked the event. |
|
mouseButtonEventArgs |
object mouseButtonEventArgs.GetPosition(element).X identifies the x-coordinate position of the mouse. mouseButtonEventArgs.GetPosition(element).Y identifies the y-coordinate position of the mouse. mouseButtonEventArgs.Shift determines whether the SHIFT key is down. mouseButtonEventArgs.Ctrl determines whether the CTRL key is down. mouseButtonEventArgs.Handled: A Boolean value that determines whether event routing should continue. (Silverlight 2) mouseButtonEventArgs.Source: Reports the object that raised the event. (Silverlight 2) |
Border (Silverlight 2)
PasswordBox (Silverlight 2)
Popup (Silverlight 2)
StackPanel (Silverlight 2)
TextBox (Silverlight 2)