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.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.