简单的图片飘C#(Winform)

本文介绍了一个使用C#实现的简单图形界面应用程序,该程序通过四个PictureBox控件和对应的Timer控件来模拟横向滚动效果。每个PictureBox控件在窗体中以不同的起始位置和垂直偏移量进行移动,当移动到窗体宽度边界时重新回到初始位置。
//4个PictureBox    ,4个Timer控件 然后把下面的复制上即可

public partial class Form1 : Form

    {

        public int x1 = 8;

        public int x2 = 148;

        public int x3 = 248;

        public int x4 = 348;



        public Form1()

        {

            InitializeComponent();

        }



        private void Form1_Load(object sender, EventArgs e)

        {

            this.timer1.Enabled = true;

            this.timer2.Enabled = true;

            this.timer3.Enabled = true;

            this.timer4.Enabled = true;

        }



        private void timer1_Tick(object sender, EventArgs e)

        {

            pictureBox1.Location = new Point(x1,8);

            x1 += 1;

            if (x1 >= this.Size.Width)

            {

                x1 = 0;

            }

        }



        private void timer2_Tick(object sender, EventArgs e)

        {

            pictureBox2.Location = new Point(x2,56);

            x2 += 1;

            if (x2 >= this.Size.Width)

            {

                x2 = 0;

            }

            

        }



        private void timer3_Tick(object sender, EventArgs e)

        {

            pictureBox3.Location = new Point(x3,112);

            x3 += 1;

            if (x3 >= this.Size.Width)

            {

                x3 = 0;

            }

        }



        private void timer4_Tick(object sender, EventArgs e)

        {

            pictureBox4.Location = new System.Drawing.Point(x4,176);

            x4 += 1;

            if (x4 >= this.Size.Width)

            {

                x4 = 0;

            }

        }

    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值