ImageBoxSample/ImageBoxGridScale.cs

Download

imageboxsample-part2.zip

(441.84 KB | 13 August 2010 )

Second in a multi part series on creating an image viewer that can be scrolled and zoomed in C#. After part one created the initial component with auto resize, we now add scrolling support.

Donate

Contents of imageboxsample-part2.zip/ImageBoxSample/ImageBoxGridScale.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Cyotek.Windows.Forms
{
  public enum ImageBoxGridScale
  {
    Small,
    Medium,
    Large
  }
}

Files