Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Provides extensions for mouse bindings.
Namespace: Microsoft.VisualStudio.Text.Editor
Assembly: Microsoft.VisualStudio.Text.UI.Wpf (in Microsoft.VisualStudio.Text.UI.Wpf.dll)
Syntax
'Declaration
Public Interface IMouseProcessor
public interface IMouseProcessor
public interface class IMouseProcessor
type IMouseProcessor = interface end
public interface IMouseProcessor
The IMouseProcessor type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
PostprocessDragEnter | Handles a drag enter event after the default handler. |
![]() |
PostprocessDragLeave | Handles a drag leave event after the default handler. |
![]() |
PostprocessDragOver | Handles a drag over event after the default handler. |
![]() |
PostprocessDrop | Handles a drop event after the default handler. |
![]() |
PostprocessGiveFeedback | Handles a GiveFeedback event after the default handler. |
![]() |
PostprocessMouseDown | Handles a mouse down event after the default handler. |
![]() |
PostprocessMouseEnter | Handles a mouse enter event after the default handler. |
![]() |
PostprocessMouseLeave | Handles a mouse leave event after the default handler. |
![]() |
PostprocessMouseLeftButtonDown | Handles a mouse left button down event after the default handler. |
![]() |
PostprocessMouseLeftButtonUp | Handles a mouse left button up event after the default handler. |
![]() |
PostprocessMouseMove | Handles a mouse move event after the default handler. |
![]() |
PostprocessMouseRightButtonDown | Handles a mouse right button down event after the default handler. |
![]() |
PostprocessMouseRightButtonUp | Handles a mouse right button up event after the default handler. |
![]() |
PostprocessMouseUp | Handles a mouse up event after the default handler. |
![]() |
PostprocessMouseWheel | Handles a mouse wheel event after the default handler. |
![]() |
PostprocessQueryContinueDrag | Handles a QueryContinueDrag event after the default handler. |
![]() |
PreprocessDragEnter | Handles a drag enter event before the default handler. |
![]() |
PreprocessDragLeave | Handles a drag leave event before the default handler. |
![]() |
PreprocessDragOver | Handles a drag over event before the default handler. |
![]() |
PreprocessDrop | Handles a drop event before the default handler. |
![]() |
PreprocessGiveFeedback | Handles a GiveFeedback event before the default handler. |
![]() |
PreprocessMouseDown | Handles a mouse down event before the default handler. |
![]() |
PreprocessMouseEnter | Handles a mouse enter event before the default handler. |
![]() |
PreprocessMouseLeave | Handles a mouse leave event before the default handler. |
![]() |
PreprocessMouseLeftButtonDown | Handles a mouse left button down event before the default handler. |
![]() |
PreprocessMouseLeftButtonUp | Handles a mouse left button up event before the default handler. |
![]() |
PreprocessMouseMove | Handles a mouse move event before the default handler. |
![]() |
PreprocessMouseRightButtonDown | Handles a mouse right button down event before the default handler. |
![]() |
PreprocessMouseRightButtonUp | Handles a mouse right button up event before the default handler. |
![]() |
PreprocessMouseUp | Handles a mouse up event before the default handler. |
![]() |
PreprocessMouseWheel | Handles a mouse wheel event before the default handler. |
![]() |
PreprocessQueryContinueDrag | Handles a QueryContinueDrag event before the default handler. |
Top