[请益] C# thread sleep 使用for循环问题

楼主: xa9277178 (楓曦)   2016-08-22 22:05:04
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;
using System.Threading;
using System.Diagnostics;
namespace WindowsFormsApplication11
{
public partial class Form1 : Form
{
Thread sample1;
Thread sample2;
Thread sample3;
Thread sample4;
Thread sample5;
Thread sample6;
public Form1()
{
InitializeComponent();
}
private void _ThreadFunction()
{
Thread.Sleep(8000); //延
迟几秒
}
private void button1_Click(object sender, EventArgs e)
{
for (int i = 1; i <= 2; i++)
{
string mm = DateTime.Now.ToString("H-m-s");
textBox1.Text = (mm);
sample1 = new Thread(_ThreadFunction);
sample1.Start();
Process.Start(@"C:\Users\wind\Desktop\春泥.mp3");
}
}
上面这段程式码我撷取到第一个button,我是想做一个计时器,可以每8秒提醒我一次,
为什么会使用thread来做是因为我一次设计了6个计时器,尴尬地发现sleep的时候
我不能按其他几个计时器按钮,原先这样尝试是OK的。
当我加入了for之后,我自己的想法里,经过Start()的时候,不是应该要静止8秒吗?
可是我却发现...他连开两次春泥(process.start的歌),可是我是希望每8秒循环一次,
放歌出来提醒我,请问我有忽略到哪个部分,恳请大神指导。
顺带一问,其实我只是..想要有类似按键精灵那种wait的方法,不要让我整个
程式卡住,可是网络上的方法千奇百怪,有些根本看不懂,这个方式已经是最简单
我能理解的了...

Links booklink

Contact Us: admin [ a t ] ucptt.com