怎么才能使图片缩放或者查看滚动图片?
怎么才能使图片缩放或者查看滚动图片?
怎么才能使图片缩放在.net 中用那个控件,怎么用?
滚动图片怎么设制?
谢谢!
[解决办法]
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
namespace demo
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.ComponentModel.IContainer components;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.panel1 = new System.Windows.Forms.Panel();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject( "pictureBox1.Image ")));
this.pictureBox1.Location = new System.Drawing.Point(8, 0);
this.pictureBox1.Name = "pictureBox1 ";
this.pictureBox1.Size = new System.Drawing.Size(128, 120);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// pictureBox2
//
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject( "pictureBox2.Image ")));
this.pictureBox2.Location = new System.Drawing.Point(136, 0);
this.pictureBox2.Name = "pictureBox2 ";
this.pictureBox2.Size = new System.Drawing.Size(136, 120);
this.pictureBox2.TabIndex = 1;
this.pictureBox2.TabStop = false;
//
// panel1
//
this.panel1.Controls.Add(this.pictureBox3);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.pictureBox2);
this.panel1.Location = new System.Drawing.Point(0, 64);
this.panel1.Name = "panel1 ";
this.panel1.Size = new System.Drawing.Size(560, 120);
this.panel1.TabIndex = 2;
//
// pictureBox3
//
this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject( "pictureBox3.Image ")));
this.pictureBox3.Location = new System.Drawing.Point(280, 0);
this.pictureBox3.Name = "pictureBox3 ";
this.pictureBox3.Size = new System.Drawing.Size(144, 120);
this.pictureBox3.TabIndex = 2;
this.pictureBox3.TabStop = false;
//
// button1
//
this.button1.Location = new System.Drawing.Point(168, 216);
this.button1.Name = "button1 ";
this.button1.Size = new System.Drawing.Size(80, 40);
this.button1.TabIndex = 3;
this.button1.Text = "开始滚动图片 ";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(328, 216);
this.button2.Name = "button2 ";
this.button2.Size = new System.Drawing.Size(88, 40);
this.button2.TabIndex = 4;
this.button2.Text = "停止 ";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(584, 301);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.panel1);
this.Name = "Form1 ";
this.Text = "Form1 ";
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void timer1_Tick(object sender, System.EventArgs e)
{
this.pictureBox1.Left-=2;
if(this.pictureBox1.Left==0)
{
this.pictureBox1.Left=410;
}
this.pictureBox2.Left-=2;
if(this.pictureBox2.Left==0)
{
this.pictureBox2.Left=410;
}
this.pictureBox3.Left-=2;
if(this.pictureBox3.Left==0)
{
this.pictureBox3.Left=410;
}
}
private void button1_Click(object sender, System.EventArgs e)
{
this.timer1.Start();
}
private void button2_Click(object sender, System.EventArgs e)
{
this.timer1.Stop();
}
}
}