Click here to Skip to main content
Licence 
First Posted 29 Sep 2005
Views 73,230
Bookmarked 47 times

Simple zoom functionality for custom controls

By | 13 Apr 2006 | Article
How to add simple zoom functionality for custom controls.

Introduction

Initially, I wrote a small article to describe what is necessary to add zoom functionality to a custom control (see Details below). There were many users who had problems using the described routines in their own code. That is the reason I decided to program a custom control library (UniversalControl.dll) and provide it with a demo project. I also added a vertical and horizontal scrollbar to the control, because it seemed to be an indispensable feature.

Usage (see also the demo project)

  1. Add the UniversalControl.dll library to your toolbox.
  2. Drag the CUniversalControl item in your application.
  3. Configure your CUniversalControl (set colors, enable/disable scrollbars, ...).
  4. Write your own drawing routine (DrawContents(Graphics grc)).
  5. Add it to the control drawing event.
cUniversalControl1.EDraw += new DDrawContents(DrawContents);

Details

The user selects the zoom area with his left mouse button, see the screenshots below:

Sample Image

Sample Image

The Code

Three routines to handle the mouse events are added to the control. The OnMouseDown method is called when a mouse button is pressed. It sets the starting point for the new zoom area and resets its size to zero.

/// <summary>
/// event handler for mouse button pressed
/// sets zoom area start coordinates
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void OnMouseDown(object sender, 
          System.Windows.Forms.MouseEventArgs e)
{
  // reset zoom state
  m_blnZoom = false;
  // sets the starting point of the zoomed area
  m_ZoomRect = new Rectangle(new Point(e.X, e.Y), 
                             new Size(0, 0));
}

The OnMouseMove updates the area to zoom based on the current mouse position as long as the left mouse button is pressed. It calls the Invalidate method of the control to update the chosen zoom rectangle (black rectangle). Drawback: Invalidate called without parameters updates the whole control, that may result in some flickering during the selection of the area to zoom (solution: invalidate only the necessary region).

/// <summary>
/// handles mouse move events
/// updates current zoom area
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void OnMouseMove(object sender, 
          System.Windows.Forms.MouseEventArgs e)
{
  // updates the current zoom area
  // during mouse mouvements 
  // so it can be drawn by the OnPaint method
  if (e.Button != MouseButtons.Left) return;
  if (m_ZoomRect.X >= e.X)
      m_ZoomRect.Width += Math.Abs(e.X - m_ZoomRect.X);
  else m_ZoomRect.Width = Math.Abs(e.X - m_ZoomRect.X);
  if (m_ZoomRect.Y >= e.Y)
      m_ZoomRect.Height += Math.Abs(e.Y - m_ZoomRect.Y);
  else m_ZoomRect.Height = Math.Abs(e.Y - m_ZoomRect.Y);
  if (m_ZoomRect.X > e.X) m_ZoomRect.X = e.X;
  if (m_ZoomRect.Y > e.Y) m_ZoomRect.Y = e.Y;
  this.Invalidate();
}

The OnMouseUp method finally is called when a mouse button is released. If the left mouse button is released, the next call to the OnPaint method will draw the chosen area onto the whole control (zoom).

/// <summary>
/// event handler for mouse button released
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void OnMouseUp(object sender, 
          System.Windows.Forms.MouseEventArgs e)
{
  // left mouse button released,
  // zoom to the chosen area
  if (e.Button == MouseButtons.Left)
      m_blnZoom = true; 
  this.Refresh();
}

Last but not least, the code that needs to be added to the OnPaint method. If the control is in “zoom-mode”, the necessary scaling and translation on the Graphics are executed. After that, all the drawing wanted for the control is done (DrawContents()). Finally the rectangle for the area to zoom (black rectangle) is drawn. That’s all.

/// <summary>
/// redraws the control
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void OnPaint(object sender, 
          System.Windows.Forms.PaintEventArgs e)
{
  if (m_blnZoom)
  {
    // scale and translate the transform
    // that the selected area (m_ZoomRect)
    // is drawn on the whole control (zoom)
    e.Graphics.ScaleTransform((float)this.ClientSize.Width/m_ZoomRect.Width, 
      (float)this.ClientSize.Height/m_ZoomRect.Height);
    e.Graphics.TranslateTransform(-m_ZoomRect.X, -m_ZoomRect.Y);
  }
  
  // draw control specific contents (data to be zoomed)
  DrawContents(e.Graphics);

  if (!m_blnZoom)
  {
    // draws the selected zoom area during mouse movements
    e.Graphics.DrawRectangle(new Pen(new SolidBrush(Color.Black), 2), 
                                                         m_ZoomRect);
  }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

star_blazer

Web Developer

Switzerland Switzerland

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembermanoj kumar choubey22:41 28 Feb '12  
GeneralMy vote of 1 Pinmemberalleph11:05 27 Feb '12  
Generalmissing DLL Pinmemberkouroy20:17 8 Sep '10  
GeneralRe: missing DLL Pinmemberwilll_agu12:01 4 Aug '11  
QuestionNeed Help over Zooming PinmemberKhurram riazuddin22:41 30 Aug '10  
GeneralMy vote of 1 PinmemberMeurisse21:22 7 Feb '10  
GeneralMy vote of 1 Pinmembergeneral.failure6:36 27 Jan '10  
QuestionCould you please send the missing DLL ? PinmemberMor Vered23:17 20 Sep '09  
GeneralMissing DLL PinmemberFrank Gennaro 24872196:08 5 Sep '09  
GeneralZoom On An Image File Pinmemberkjward7:05 26 Nov '08  
Generalsource code Pinmemberdanny westfall15:16 15 Nov '08  
GeneralUniversal Control Library Pinmemberjjjay3:49 2 Jul '08  
GeneralSource code for UniversalControl.dll PinmemberMember 32842913:45 9 May '08  
GeneralSource code of UniversalControl.dll Pinmemberwaths0:14 1 Apr '08  
GeneralRe: Source code of UniversalControl.dll PinmemberGrofi1:52 6 Apr '08  
GeneralRe: Source code of UniversalControl.dll PinmemberMember 32842913:43 9 May '08  
QuestionCan i please have UniversalControl.dll? Pinmemberandredani21:36 30 Mar '08  
AnswerRe: Can i please have UniversalControl.dll? PinmemberSaysa21:39 8 Jul '09  
GeneralwebBrowser control Pinmemberhostopolis3:15 27 Aug '07  
Generalplease help me PinmemberMausumi18:19 10 Jan '07  
GeneralCode for UniversalControl.dll PinmemberMichael Kämpf2:56 29 Oct '06  
QuestionThe Code.. Pinmemberdeltaht92:32 17 Jun '06  
GeneralThis 'article' kind of sucks Pinmemberfwsouthern10:35 15 Apr '06  
Generalscroll bars Pinmembermliss19:00 16 Dec '05  
GeneralRe: scroll bars Pinmemberszembek9:41 30 Jan '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 13 Apr 2006
Article Copyright 2005 by star_blazer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid