资源简介

C#写的一个带进度条的C#软件启动特效,类似Word的启动画面的案例,源码完全公开,值得学习!

资源截图

代码片段和文件信息

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;

namespace StartupInterface
{
    public partial class Origination : Form
    {
        public Origination()
        {
            InitializeComponent();
        }

        private void Origination_Load(object senderEventArgs e)
        {
            progressBar1.Minimum = 0;               //设定ProgressBar控件的最小值为0
            progressBar1.Maximum = 10;              //设定ProgressBar控件的最大值为10
            progressBar1.MarqueeAnimationSpeed = 100; //设定ProgressBar控件进度块在进度栏中移动的时间段
            Counter.Start();                       //启动计时器
        }

        private void Counter_Tick(object senderEventArgs e)
        {
            this.Hide();                           //隐藏本窗体
            StartupInterface MainForm = new StartupInterface();  //实例化一个MainForm对象
            MainForm.Show();                                 //显示窗体MainForm
            Counter.Stop();                                  //停止计时器
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

                55954                    19


评论

共有 条评论