Displaying multi-page tiff files using the ImageBox control and C#
A brief article showing how to display individual pages from a multi-page tiff file in the ImageBox control.
After part 2 added scrolling support, we are now going to extend this to support keyboard scrolling and panning with the mouse.
In order to enable panning, we're going to add three new
properties. The AutoPan
property will control if the user can
click and drag the image with the mouse in order to scroll.
Also, we'll add an InvertMouse
property to control how the
scrolling works. Finally the IsPanning
property; however it
can only be read publicly, not set.
As well as the backing events for the above properties, we'll
also add extra events - PanStart
and PanEnd
The normal
Scroll
event will be utilized while panning is in progress
rather than a custom event.
To pan with the mouse, the user needs to "grab" the control by
clicking and holding down the left mouse button. As they move
the mouse, the control should automatically scroll in the
opposite direction the mouse is moving (or if InvertMouse
is
set, in the same direction). Once the button is released,
scrolling should stop.
We'll implement this by overriding OnMouseMove
and
OnMouseUp
, shown below.
UpdateScrollPosition
is a common method to set the viewport
and refresh the control. The IsPanning
property is used to
notify the control internally that a pan operation has been
started. It will also set a semi-appropriate cursor (we'll look
at custom cursors another time), and raise either the PanStart
or PanEnd
events.
The first two versions of this component effectively disabled
keyboard support via the ControlStyles.Selectable
control
style and TabStop
property. However, we now want to allow
keyboard support. So the first thing we do is remove the call to
disable the selectable style and resetting of the tab stop
property from the constructor. We also remove the custom
TabStop
property we had implemented for attribute overriding.
With this done, we can now add some keyboard support. As the
ScrollableControl
doesn't natively support this, we'll do it
ourselves by overriding OnKeyDown
. One of the initial
drawbacks is that it won't always capture special keys, such as
the arrow keys.
In order for it to do so we need to let the control know that
such keys are required by overriding IsInputKey
- if this
returns true
, then the specified key is required and will be
captured in OnKeyDown
.
When the left, right, up or down arrow keys are pressed, the control checks to see if a modifier such as shift or control is active. If not, then the control is scrolled either horizontally or vertically using the "small change" value of the appropriate scrollbar. If a modifier was set, then the scroll is made using the "large change" value.
The AdjustScroll
method is used to "nudge" the scrollbars in
the given direction, using values read from the
HorizontalScroll
and VerticalScroll
- reading the
AutoScrollPosition
property didn't return appropriate results
in our testing.
You can download the third sample project from the links below. The final article in the series will add autofit, centering and of course, zoom support.
Like what you're reading? Perhaps you like to buy us a coffee?
# gyurisc
# Richard Moss