ImageBoxSample/ImageBoxGridScale.cs
Download
imageboxsample-part-1.zip
(37.58 KB | 12 August 2010 )
First in a multi part series on creating an image viewer that can be scrolled and zoomed in C#.
Donate
If this site or its services have saved you time, please consider a donation to help with running costs and timely updates.
Contents of imageboxsample-part-1.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
}
}
