using System; namespace WpfTestSvgSample { /// /// Defines the current state of the mouse handling logic. /// public enum MouseHandlingMode { /// /// Not in any special mode. /// None, /// /// The user is left-dragging rectangles with the mouse. /// DraggingRectangles, /// /// The user is left-mouse-button-dragging to pan the viewport. /// Panning, /// /// The user is holding down shift and left-clicking or right-clicking to zoom in or out. /// Zooming, } }