- interactiveMode
- A InteractiveMode enumeration member that specifies the interactive mode to set the mouse cursors for.
- idleCursor
- A System.Windows.Input.Cursor that defines the mouse cursor to use when the interactive mode is idle.
- workingCursor
- A System.Windows.Input.Cursor that defines the mouse cursor to use when the interactive mode is working.
Visual Basic (Declaration) | |
---|---|
Public Overridable Sub SetInteractiveModeCursor( _ ByVal interactiveMode As InteractiveMode, _ ByVal idleCursor As Cursor, _ ByVal workingCursor As Cursor _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As ImageViewer Dim interactiveMode As InteractiveMode Dim idleCursor As Cursor Dim workingCursor As Cursor instance.SetInteractiveModeCursor(interactiveMode, idleCursor, workingCursor) |
C# | |
---|---|
public virtual void SetInteractiveModeCursor( InteractiveMode interactiveMode, Cursor idleCursor, Cursor workingCursor ) |
C++/CLI | |
---|---|
public: virtual void SetInteractiveModeCursor( InteractiveMode interactiveMode, Cursor^ idleCursor, Cursor^ workingCursor ) |
Parameters
- interactiveMode
- A InteractiveMode enumeration member that specifies the interactive mode to set the mouse cursors for.
- idleCursor
- A System.Windows.Input.Cursor that defines the mouse cursor to use when the interactive mode is idle.
- workingCursor
- A System.Windows.Input.Cursor that defines the mouse cursor to use when the interactive mode is working.
For C#/VB examples, refer to ImageViewer.InteractivePan.
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.
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family