⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 C#程序开发范例宝典 图书光盘附带源码 第五章
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace Ex05_16
{
    public partial class Form1 : Form
    {
        int left = 0;
        public Form1()
        {
            InitializeComponent();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            left = 10;
            this.panel1.Left += left;
            int width=this.Width - this.panel1.Width;
            if (this.panel1.Left > width)
            {
                this.timer1.Enabled = false;
                this.timer2.Enabled = true;
                this.pictureBox1.Image = this.imageList1.Images[0];
                this.pictureBox2.Image = this.imageList2.Images[0];
                this.pictureBox3.Image = this.imageList3.Images[0];
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.pictureBox1.Image = this.imageList1.Images[0];
            this.pictureBox2.Image = this.imageList2.Images[0];
            this.pictureBox3.Image = this.imageList3.Images[0];
            
        }

        private void timer2_Tick(object sender, EventArgs e)
        {
            left = -10;
            this.panel1.Left += left;
            if (this.panel1.Left <0)
            {
                this.timer1.Enabled = true;
                this.timer2.Enabled = false;
                this.pictureBox1.Image = this.imageList1.Images[1];
                this.pictureBox2.Image = this.imageList2.Images[1];
                this.pictureBox3.Image = this.imageList3.Images[1];
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -