Classes
| Class | Description | |
|---|---|---|
| BookmarkEventArgs |
BookmarkEventArgs
| |
| BookmarkIconEventArgs |
SetBookmarkIconEventArgs
| |
| BookmarkTitleEventArgs |
BookmarkTitleEditEventArgs
| |
| DragDropEventArgs |
This event is raised when the user moves or clicks the mouse.
| |
| DragSelectEventArgs |
This event is raised when the user drags a (selection) rectangle.
| |
| InteractorEventArgs |
Event that is fired for a particular interactor.
| |
| KeyboardEventArgs | This event is raised when the user enters text on the keyboard. In contrast to WinForms, ReaderControls will not generate both KeyPress and KeyDown events. Instead it will just generate a KeyDown event when the user presses a key, and a KeyUp event when the user releases the key. If the user holds a key, a number of KeyDown events will be generated. The ReaderControls KeyDown event specifies both the key's unicode character and its low level key data and modifiers. In addition, it specifies a culture-specific string representation. | |
| MouseEventArgs |
This event is raised when the user moves or clicks the mouse.
| |
| PaintEventArgs |
This event is raised when a region of the screen has become invalid, and must be
repainted. Paint events may be raised at any time, and are often the result
of calling Invalidate on an interactor.
| |
| PreviewEvent<(Of <(<'EventType>)>)> |
A preview event adds a Cancel property to an existing event. Preview events are
fired before event processing (OnMouseDown, OnPaint, etc.) gets invoked. They
are first fired for the top-most interactor in the visual tree (a document interactor),
then for the childs that the event applies to, etc. At any point, the preview event
may be cancelled. This means that the event will not be processed by the corresponding
interactor, nor by its children. Eventually, the event will be processed by the
bottom-most (= most specific) interactor for which the event was not cancelled.
| |
| UnhandledExceptionEventArgs |
The UnhandledExceptionEvent makes is possible to handle exceptions
that arise when a control is excecuting code that did not get
invoked by user code.
|