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 = " ";
}