Leadtools.Windows.Controls Namespace > ImageViewer Class : SetInteractiveModeCursor Method |
public virtual void SetInteractiveModeCursor( InteractiveMode interactiveMode, Cursor idleCursor, Cursor workingCursor )
'Declaration Public Overridable Sub SetInteractiveModeCursor( _ ByVal interactiveMode As InteractiveMode, _ ByVal idleCursor As Cursor, _ ByVal workingCursor As Cursor _ )
'Usage Dim instance As ImageViewer Dim interactiveMode As InteractiveMode Dim idleCursor As Cursor Dim workingCursor As Cursor instance.SetInteractiveModeCursor(interactiveMode, idleCursor, workingCursor)
public: virtual void SetInteractiveModeCursor( InteractiveMode interactiveMode, Cursor^ idleCursor, Cursor^ workingCursor )
Use this method to set different mouse cursors for each interactive mode used in this RasterImageViewer. A value of null (Nothing in Visual Basic) for any of the cursors instructs the viewer to use the default cursor set in the System.Windows.Input.Cursor property either by the designer or through code.
By default, all the interactive modes have a cursor value of null (Nothing in Visual Basic) and changing the interactive mode will not change the mouse cursor unless you call this method first to set the desired cursors to use.
The idle cursor is used when the interactive mode is not working, in other words, when the user has set the interactive mode to a value but has not clicked the mouse button to initiate it yet. The working cursor is used when the interactive mode is working, in other words, when the user has clicked and start dragging the mouse button.
Note that when you call this method, the current interactive mode will be canceled if it is working.
For C#/VB examples, refer to InteractivePan.