IMouseManager
StockSharp.Xaml.Charting.Utility.Mouse
Defines the interface to the MouseManager, a cross-platform helper class to propagate mouse events in both Silverlight and WPF
Methods
Subscribe
public void Subscribe(IPublishMouseEvents source, IReceiveMouseEvents target)
iMouseManager.Subscribe(source, target)
Subscribes to mouse events on the Source, propagating handlers to the Target
- source
- The source of mouse events
- target
- The target to receive mouse event handlers
Unsubscribe
public void Unsubscribe(IPublishMouseEvents element)
iMouseManager.Unsubscribe(element)
Unsubscribes the source from mouse events
- element
- The source to unsubscribe
Unsubscribe
public void Unsubscribe(IReceiveMouseEvents element)
iMouseManager.Unsubscribe(element)
Unsubscribes the element from mouse events
- element
- The element to unsubscribe