This documentation is for the old version. Go to the latest Graphics Mill docs

Using Navigators and Rubberbands (Windows Forms)

BitmapViewer control can be used not only to display the image at the screen. Using special controls it can process user input at the displayed image. For example, it can zoom an image at mouse click, pan it on mouse move, or select a portion of the image. These controls are called controllers. There are two kinds of controllers - navigators and rubberbands.

Navigator is a control which specifies how the user can navigate the image (scroll, or zoom). For example, this control can zoom the image in by the mouse click (ZoomInNavigator). To associate it with the BitmapViewer, you should use the property Navigator.

Rubberband is a geometric shape which can be added to the BitmapViewer, moved, or resized. Graphics Mill for .NET currently supports three kinds of rubberbands: rectangles, ellipses and a special rubberband that allows drawing vector objects with the BitmapViewer control. You can read more about the latter type of the rubberbands in the Using V-objects With the BitmapViewer Control topic.

To associate a rubberband with the BitmapViewer, use the property Rubberband.

You can associate an user input controller to the BitmapViewer in design time in the following way:

  1. Find necessary controller at the component toolbox (it should be near the BitmapViewer).
  2. Drag it at the form.
  3. Open properties of the BitmapViewer.
  4. Change the property Navigator to the appropriate navigator control name and the property Rubberband to the necessary rubberband name.

It should be looking similar to the following screenshots:

Visual Studio screenshot

Visual Studio screenshot

You can also modify these properties in the run-time. It is convenient when you are creating the toolbar.

Graphics Mill for .NET is shipped with the following controllers:

  • PanNavigator icon PanNavigator - this control is responsible for image panning when mouse left button is pressed and mouse moved.
  • ZoomInNavigator icon ZoomInNavigator - this control is responsible for zooming the image in when user clicks the mouse button at some image point. The portion of image user clicked at is centered.
  • ZoomOutNavigator icon ZoomOutNavigator - this control is responsible for zooming the image out when user clicks the mouse button at some image point. The portion of image user clicked at is centered.
  • ZoomRectangleNavigator icon ZoomRectangleNavigator - this control is a combination of the RectangleRubberband and the ZoomInNavigator. When user presses mouse button and start dragging, selection is drawn. When mouse button is released, the image is zoomed to display the selected image portion only.
  • RectangleRubberband icon RectangleRubberband - this control is responsible for drawing rectangular selection at the image. You can also edit the rectangle (move or resize). Rectangle resizing may be restricted by fixed proportions which is useful when it is used for cropping selection.
  • EllipseRubberband icon EllipseRubberband - this control is responsible for drawing elliptical selection at the image. You can also edit the ellipse (move or resize). The resizing may be restricted by fixed proportions which is useful when selection is used for crop.
  • EllipseRubberband icon VObjectsRubberband - this control is responsible for adding vector objects to the image.
Note

All controllers except of VObjectsRubberband are located in the Aurigma.GraphicsMill.WinControls.dll assembly. The VObjectsRubberband is located in the Aurigma.GraphicsMill.WinControls.VectorObjects.dll assembly.

See Also

Manual