找回密碼
 立即注冊(cè)

QQ登錄

只需一步,快速開(kāi)始

帖子
查看: 3922|回復(fù): 0
打印 上一主題 下一主題
收起左側(cè)

用visio簡(jiǎn)單做一個(gè)倒計(jì)時(shí)器 附程序源代碼

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
用visio studio 2012簡(jiǎn)單學(xué)習(xí)上位機(jī)的做法,做了一個(gè)簡(jiǎn)單的倒計(jì)時(shí)器。有進(jìn)度條和提示框,大家互相學(xué)習(xí)。

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("時(shí)間到了!", "提示");
                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, 下載次數(shù): 193)

51hei圖片20190803145931.png

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

51hei圖片20190803150032.png

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

51hei圖片20190803145956.png

上位機(jī)1.0.zip

53.4 KB, 下載次數(shù): 8, 下載積分: 黑幣 -5

評(píng)分

參與人數(shù) 1黑幣 +50 收起 理由
admin + 50 共享資料的黑幣獎(jiǎng)勵(lì)!

查看全部評(píng)分

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

使用道具 舉報(bào)

本版積分規(guī)則

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

Powered by 單片機(jī)教程網(wǎng)

快速回復(fù) 返回頂部 返回列表