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

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 4248|回復: 0
打印 上一主題 下一主題
收起左側

用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

評分

參與人數 1黑幣 +50 收起 理由
admin + 50 共享資料的黑幣獎勵!

查看全部評分

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表