Download imageboxsample-part3.zip, last updated 23/08/2010 (443.55 KB)

Download
  • md5: 18e195e5dce9f1b6b33738aadcfa7c12
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ImageBoxSample
{
  public partial class MainForm : Form
  {

    // ImageBox sample project
    // http://cyotek.com/article/display/creating-a-scrollable-and-zoomable-image-viewer-in-csharp-part-2

    // Preview image based on bwpx.icns - http://paularmstrongdesigns.com/projects/bwpx-icns/
    // Large preview image from http://www.crazythemes.com/colorful-abstract-widescreen-wallpapers-vol2/2153

    public MainForm()
    {
      InitializeComponent();
    }

    private void imageBox_Scroll(object sender, ScrollEventArgs e)
    {
      positionToolStripStatusLabel.Text = imageBox.AutoScrollPosition.ToString();
    }
  }
}

Donate

Donate