• 大小: 0.19M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: 图片  C#  c  

资源简介

C# 像网页图片滚动一样的动画效果

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
// Download by http://www.codefans.net
namespace Case03_2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            this.timer1.Enabled = true;    //计时器可用
        }

        private void timer1_Tick(object sender EventArgs e)
        {
            this.panel1.Left = this.panel1.Left + 10;    
            if (this.panel1.Left > this.Width + 10)
            {
                this.panel1.Left = - this.panel1.Width;
            }

    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-04-24 18:05  C# 像网页图片滚动一样的动画效果,奉献源码\

评论

共有 条评论