Scrolling Picture : Panel « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » PanelScreenshots 
Scrolling Picture
 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

public class Form1 : Form {
    public Form1() {
        this.panel1 = new System.Windows.Forms.Panel();
        this.SuspendLayout();
        this.panel1.AutoScroll = true;
        this.panel1.BackgroundImage = new Bitmap("yourfile.bmp");
        this.panel1.Location = new System.Drawing.Point(1313);
        this.panel1.Size = new System.Drawing.Size(267243);
        this.AutoScaleDimensions = new System.Drawing.SizeF(8F16F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(292268);
        this.Controls.Add(this.panel1);
        this.Load += new System.EventHandler(this.Form1_Load);
        this.ResumeLayout(false);        this.panel1.AutoScrollMinSize = this.panel1.BackgroundImage.Size;
    }

    private void Form1_Load(object sender, EventArgs e) {
        int midX = this.panel1.AutoScrollMinSize.Width / 2;
        int midY = this.panel1.AutoScrollMinSize.Height / 2;
        int halfSizeX = this.panel1.Size.Width / 2;
        int halfSizeY = this.panel1.Size.Height / 2;
        int startPosX = midX - halfSizeX;
        if (startPosX < 0startPosX = 0;
        int startPosY = midY - halfSizeY;
        if (startPosY < 0startPosY = 0;

        this.panel1.AutoScrollPosition = new Point(startPosX, startPosY);
    }
    private System.Windows.Forms.Panel panel1;
    [STAThread]
    static void Main() {
        Application.EnableVisualStyles();
        Application.Run(new Form1());
    }
}

 
Related examples in the same category
1.Subclass Panel
2.Panel and form dock padPanel and form dock pad
3.Split Container(Panel): CollapsedSplit Container(Panel): Collapsed
4.Scrollable PanelScrollable Panel
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.