Click here to Skip to main content
Licence CPOL
First Posted 15 Mar 2011
Views 12,539
Downloads 1,318
Bookmarked 17 times

A Silverlight custom control for zooming and panning with a small window to see he image with thumb

By | 15 Mar 2011 | Article
Zooming and panning an image in a Silverlight application.

Introduction

This article provides the ability to interactively view high resolution images. You can zoom in and zoom out images. This Silverlight custom control enables deep zooming using Storyboard animation and smooth panning by handling the MouseLeftButtonDown, MouseLeftButtonUp, and MouseMove events. The following features are included:

  • Deep zooming
  • Panning an image
  • Small window with thumb to view the exact location of the zoomed image

Background

Deep zooming is a pretty straightforward functionality and is done with the ScaleTransform property. Panning is done by setting the offset X and Y of the content. Silverlight 3 has a MultiscaleImage control for zooming multi-resolution images. It has a Source property to set multiple images.

In this article, I have created a custom zoom control for zooming and panning single images with animation for smooth panning.

Using the Code

  1. Creating a custom zoom and pan control using Silverlight 4 Class Library
  2. First, create a class for zoom and pan which inherits from ContentControl and implements the IScrollInfo interface to move the thumb image within the area. This class contains Rectangle properties and animation methods for setting the content offset in X,Y coordinates with point zooming. It overrides the Size method to change the image size and scale of images. It has a Generic Style for setting the Template for the control with properties. This style is imported to the class.

  3. Using the control in a Silverlight application
    • Create a Silverlight application to use the zoom and pan custom Silverlight control.
    • In the Silverlight application, create an enum to handle the mouse modes.

      MouseHandlingMode.cs
      public enum MouseHandlingMode
      {
          None,
          DraggingRectangles,
          Panning,
          Zooming,
          DragZooming,
      }

      Create a class having Dependency Properties for setting the scale, width, height, offset etc., and implement the InotifyPropertyChanged interface to change the property value.

    • Declare all the Dependecy properties and the collection for the example.
    • public class DataModel : INotifyPropertyChanged
      {
          private ObservableCollection<RectangleData> rectangles = 
                  new ObservableCollection<RectangleData>();
          private double contentScale = 1;
       
          public static DataModel Instance
          {
              get{return instance; }
          }
          public ObservableCollection<RectangleData> Rectangles
          {
              get{return rectangles; }
          }
          public double ContentScale
          {
              get{return contentScale; }
              set
              {
                  contentScale = value;
                  OnPropertyChanged("ContentScale");
              }
          }
      
          . . . . .
      }

      Create a Converter class to convert the scale value to percent for the Slider control:

      public class ScaleToPercentConverter : IValueConverter
      {
          public object Convert(object value, Type targetType, object parameter, 
                                CultureInfo culture)
          {   
              return (double)(int)((double)value * 100.0);
          }
      
          public object ConvertBack(object value, Type targetType, object parameter, 
                                    CultureInfo culture)
          {
              return (double)value / 100.0;
          }
      }

      Create a class for drawing the rectangle.

    • Now create the UserControl (HAEZoomingControl.xaml) to use the custom Silverlight control in the page.
      • Add the custom ZoomingAndPanning control to the page.
      • <ZoomAndPan:ZoomAndPanControl Grid.Row="0"
            x:Name="zoomAndPanControl"
            ContentScale= "{Binding Source={StaticResource 
                         TypeProvider}, Path=Instance.ContentScale, Mode=TwoWay}"
            ContentOffsetX= "{Binding Source={StaticResource 
                         TypeProvider}, Path=Instance.ContentOffsetX, Mode=TwoWay}"
            ContentOffsetY= "{Binding Source={StaticResource TypeProvider}, 
                         Path=Instance.ContentOffsetY, Mode=TwoWay}"
            ContentViewportWidth="{Binding Source={StaticResource TypeProvider}, 
                         Path=Instance.ContentViewportWidth, Mode=TwoWay}"
            ContentViewportHeight= "{Binding Source={StaticResource TypeProvider}, 
                         Path=Instance.ContentViewportHeight, Mode=TwoWay}"
            Background="{StaticResource pageBackground}"
            MouseMove="zoomAndPanControl_MouseMove"
            MouseWheel="zoomAndPanControl_MouseWheel"
            MouseLeftButtonDown="zoomAndPanControl_MouseLeftButtonDown"
            MouseLeftButtonUp="zoomAndPanControl_MouseLeftButtonUp">
            .
            .
            .
        </ZoomAndPan:ZoomAndPanControl>
      • Add ZoomIn, ZoomOut buttons and a Silder:
      • <Button x:Name="btnZoomOut"
            Grid.Column="8" 
            Click="btnZoomOut_Click">-</Button>
               <Slider Grid.Column="10"
                  x:Name="changeSlider"
                  Minimum="{Binding MinPercentage}"
                  Maximum="{Binding MaxPercentage}"
                  Value= "{Binding ElementName=zoomAndPanControl, 
                          Path=ContentScale, Converter={StaticResource 
                          scaleToPercentConverter},Mode=TwoWay}" />
               <Button x:Name="btnZoomIn"
                  Grid.Column="12"
                  Click="btnZoomIn_Click">+</Button>
      • Add a popup the contains a small image in a grid and a thumb (rectangle) to view the zooming image position.
      • <Popup x:Name="MyPOP"
                MouseLeftButtonDown="MyPOP_MouseLeftButtonDown"
                IsOpen="False">
            <StackPanel Width="200" Height="200">
            <ZoomAndPan:ZoomAndPanControl x:Name="overview"
                Width="200" Height="200"
                Background="{StaticResource popupBackground}"
                SizeChanged="overview_SizeChanged"
                Opacity="0.9">
            <Grid Width="{Binding Source={StaticResource TypeProvider}, 
                            Path=Instance.ContentWidth,Mode=TwoWay}"
               Height="{Binding Source={StaticResource TypeProvider}, 
                       Path=Instance.ContentHeight,Mode=TwoWay}"
               SizeChanged="overview_SizeChanged">
            <Image x:Name="content2" Source="{Binding ImgSource}"
                VerticalAlignment="Center" HorizontalAlignment="Center"></Image>
            <Canvas>
              <Thumb x:Name="overviewZoomRectThumb"
                Canvas.Left="{Binding Source={StaticResource TypeProvider}, 
                             Path=Instance.ContentOffsetX, Mode=TwoWay}"
                Canvas.Top="{Binding Source={StaticResource TypeProvider}, 
                            Path=Instance.ContentOffsetY, Mode=TwoWay}"
                Width="{Binding Source={StaticResource TypeProvider}, 
                       Path=Instance.ContentViewportWidth, Mode=TwoWay}"
                Height="{Binding Source={StaticResource TypeProvider}, 
                        Path=Instance.ContentViewportHeight, Mode=TwoWay}"
                DragDelta="overviewZoomRectThumb_DragDelta"
                Opacity="0.5">
             <Thumb.Template>
        
        <ControlTemplate TargetType="Thumb">
          <Border BorderBrush="Black"
              BorderThickness="3" Background="Yellow"
              CornerRadius="3" />
         </ControlTemplate>
        </Thumb.Template>
        </Thumb>
        </Canvas>
        </Grid>
        </ZoomAndPan:ZoomAndPanControl>
        </StackPanel>
        </Popup>
    • In the code-behind (HAEZoomingControl.xaml.cs), write events for MouseMove, LeftButtonDown, LeftButtonUp, and DoubleClcik. The MouseDoubleClick event is not available in Silverlight so you can use MouseLeftButtonDown instead to count clicks.
    • For example:

      • Declare a timer variable to detect double click:
      • DispatcherTimer _timer;
      • Declare an interval variable:
      • private static int INTERVAL = 200;
      • In the default constructor, create an instance of the timer.
      • public HAEZoomingControl()
        {
            InitializeComponent();
            _timer = new DispatcherTimer();
            zoomAndPanControl.ContentOffsetY = 200;
            _timer.Interval = new TimeSpan(0, 0, 0, 0, INTERVAL);
            _timer.Tick += new EventHandler(_timer_Tick);
        }
      • Add an event to stop the timer:
      • void _timer_Tick(object sender, EventArgs e)
        {
            _timer.Stop();
        }
      • In the MouseLeftButtonDown event of the control use, times to check for double click.
      • private void zoomAndPanControl_MouseLeftButtonDown(
                object sender, MouseButtonEventArgs e)
        {
            if (zoomAndPanControl.ContentScale <= (MaxPercentage / 100))
                btnZoomIn.IsEnabled = true;
            if (zoomAndPanControl.ContentScale >= (MinPercentage / 100))
                btnZoomOut.IsEnabled = true;
            if (_timer.IsEnabled)
            {
                if (zoomAndPanControl.ContentScale <= (MaxPercentage / 100))
                {
                    _timer.Stop();
                    sb = new Storyboard();
                    DoubleAnimation db = new DoubleAnimation();
                    sb.Children.Add(db);
                    sb.Completed += new EventHandler(sb_Completed);
                    db.To = zoomAndPanControl.ContentScale + 0.2;
                    db.Duration = new Duration(TimeSpan.FromSeconds(0.3));
                    Storyboard.SetTarget(db, zoomAndPanControl);
                    Storyboard.SetTargetProperty(db, 
                               new PropertyPath("ContentScale"));
                    sb.Begin();
                }
                else
                {
                    btnZoomIn.IsEnabled = false;
                }
            }
            else
            {
                _timer.Start();
                if (zoomAndPanControl.ContentScale >= (MinPercentage / 100))
                {
                    origZoomAndPanControlMouseDownPoint = 
                            e.GetPosition(zoomAndPanControl);
                    origContentMouseDownPoint = e.GetPosition(content);
                    mouseHandlingMode = MouseHandlingMode.Panning;
                    if (mouseHandlingMode != MouseHandlingMode.None)
                    {
                        zoomAndPanControl.CaptureMouse();
                        e.Handled = true;
                    }
                }
            }
        }
      • Write code for the other events and run the application.

In the image below, you can see a zoomed image and a small image on the bottom-right side of the canvas to see the offset position of the zoomed image using the yellow thumb marker.

You can zoom the image using these controls in the bottom-right corner of the page: ZoomIn, ZoomOut buttons and the Slider control.

Points of Interest

Before creating this application in Silverlight, I referred to this article byf Ashley Davis: A WPF custom control for zooming and panning). His article was great for understanding how to create rectangles, use a Dependency Property, create a custom control with Themes using the DefaultStyleKey property, and scale images etc. Here is the link to the control:

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Hiren Khirsaria

Software Developer (Senior)
Priya Softweb Solutions
India India

Member

has 3 + Total Experience in Microsoft.Net Environment.
 
2 + year Excperience in .Net Development with C# and SQL Server 2005/2008.
 
1 + Experience in WPF/Silverlight.
 
Current area of Development in Silverlight/ WPF and Windows Phone 7 Application.
 
Follow me on : http://hirenkhirsaria.blogspot.com/

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
Questionhttp://www.imagesurf.net Pinmemberiimagegrapher19:08 23 Nov '11  
AnswerRe: http://www.imagesurf.net PinmemberHiren Khirsaria0:00 12 Dec '11  
GeneralMin and Max value for contentOffsetX and contentOffsetY [modified] Pinmemberkapil bhavsar20:30 18 May '11  
GeneralRe: Min and Max value for contentOffsetX and contentOffsetY Pinmemberrobbiegis22:42 31 May '11  
GeneralMy vote of 5 Pinmembermbcrump7:47 24 Mar '11  
GeneralMy vote of 5 PinmemberMember 265878720:41 23 Mar '11  
GeneralWhoa..... PinmemberAshley Davis5:29 15 Mar '11  
GeneralRe: Whoa..... PinsubeditorIndivara23:43 19 Mar '11  
GeneralRe: Whoa..... PinmemberGeorge I. Birbilis8:51 30 Apr '12  
GeneralNeeds work PinmvpDave Kreskowiak11:07 14 Mar '11  
GeneralIs There a Reason... PinmvpJohn Simmons / outlaw programmer8:44 14 Mar '11  

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
Web02 | 2.5.120517.1 | Last Updated 15 Mar 2011
Article Copyright 2011 by Hiren Khirsaria
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid