IPublishMouseEvents

StockSharp.Xaml.Charting.Utility.Mouse

Defines the interface to a class which publishes mouse events. Used in conjunction with IReceiveMouseEvents and MouseManager to provide cross-platform WPF and Silverlight mouse eventing

事件

MouseLeave : MouseEventHandler

Occurs when the mouse pointer leaves the bounds of this element

MouseLeftButtonDown : MouseButtonEventHandler

Occurs when the left mouse button is pressed (or when the tip of the stylus touches the tablet) while the mouse pointer is over a UIElement.

MouseLeftButtonUp : MouseButtonEventHandler

Occurs when the left mouse button is released (or the tip of the stylus is removed from the tablet) while the mouse (or the stylus) is over a UIElement (or while a UIElement holds mouse capture).

MouseMiddleButtonDown : MouseButtonEventHandler

Occurs when the middle mouse button is pressed while the mouse pointer is over a UIElement.

MouseMiddleButtonUp : MouseButtonEventHandler

Occurs when the middle mouse button is released while the mouse pointer is over a UIElement. However, this event will only be raised if a caller marks the preceding MouseRightButtonDown event as handled; see Remarks.

MouseMove : MouseEventHandler

Occurs when the coordinate position of the mouse (or stylus) changes while over a UIElement (or while a UIElement holds mouse capture).

MouseRightButtonDown : MouseButtonEventHandler

Occurs when the right mouse button is pressed while the mouse pointer is over a UIElement.

MouseRightButtonUp : MouseButtonEventHandler

Occurs when the right mouse button is released while the mouse pointer is over a UIElement. However, this event will only be raised if a caller marks the preceding MouseRightButtonDown event as handled; see Remarks.

MouseWheel : MouseWheelEventHandler

Occurs when the user rotates the mouse wheel while the mouse pointer is over a UIElement, or the UIElement has focus.

TouchDown : EventHandler<TouchManipulationEventArgs>

Occurs when an input device begins a manipulation on the UIElement.

TouchMove : EventHandler<TouchManipulationEventArgs>

Occurs when an input device changes position during manipulation.

TouchUp : EventHandler<TouchManipulationEventArgs>

Occurs when a manipulation and inertia on the UIElement object is complete.