ToolManager

StockSharp.Xaml.Diagram.GXDiagram.Tool

This special IDiagramTool is responsible for managing all of the Diagram's mode-less tools.

Inherits: DiagramTool

Methods

DoKeyDown
public override void DoKeyDown(KeyEventArgs e)
toolManager.DoKeyDown(e)

This just calls KeyEventArgs) on the diagram's CommandHandler to handle standard keyboard command bindings.

e
DoKeyUp
public override void DoKeyUp(KeyEventArgs e)
toolManager.DoKeyUp(e)

This just calls KeyEventArgs) on the diagram's CommandHandler.

e
DoMouseDown
public override void DoMouseDown()
toolManager.DoMouseDown()

Iterate over the MouseDownTools and start the first one that CanStart.

DoMouseMove
public override void DoMouseMove()
toolManager.DoMouseMove()

Iterate over the MouseMoveTools and start the first one that CanStart.

DoMouseUp
public override void DoMouseUp()
toolManager.DoMouseUp()

Iterate over the MouseUpTools and start the first one that CanStart.

DoMouseWheel
public override void DoMouseWheel()
toolManager.DoMouseWheel()

This just calls StandardMouseWheel to get the standard scrolling and zooming behavior.