欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

標題: 用visio簡單做一個倒計時器 附程序源代碼 [打印本頁]

作者: 792544979    時間: 2019-8-3 15:03
標題: 用visio簡單做一個倒計時器 附程序源代碼
用visio studio 2012簡單學習上位機的做法,做了一個簡單的倒計時器。有進度條和提示框,大家互相學習。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 阿三
{
    public partial class Form1 : Form
    {
        int count,time;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int i;
            for (i = 0; i < 100; i++)
            {
                comboBox1.Items.Add(i.ToString()+" 秒");
            }
            label3.Text = " ";
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            count++;
            label3.Text=(time-count).ToString()+"秒";
            progressBar1.Value = count;
            if (count == time)
            {
                timer1.Stop();
                System.Media.SystemSounds.Asterisk.Play();
                MessageBox.Show("時間到了!", "提示");
                count = 0;
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string str=comboBox1.Text;
            time = Convert.ToInt16(str.Substring(0, 2));
            progressBar1.Maximum = time;
            timer1.Start();
        }
    }
}





51hei圖片20190803145931.png (27.33 KB, 下載次數: 193)

51hei圖片20190803145931.png

51hei圖片20190803150032.png (20.25 KB, 下載次數: 162)

51hei圖片20190803150032.png

51hei圖片20190803145956.png (16.18 KB, 下載次數: 147)

51hei圖片20190803145956.png

上位機1.0.zip

53.4 KB, 下載次數: 8, 下載積分: 黑幣 -5






歡迎光臨 (http://m.raoushi.com/bbs/) Powered by Discuz! X3.1