如何使用计时器等待程序? C#

时间:2015-05-04 18:52:39

标签: c# timer wait

如何在C#中使用计时器等待程序?

示例:

downloadImage();
waitUsingTimer(); //or we can say SLEEP
showImage();

你能告诉我方法waintUsingTimer()的语法吗?

1 个答案:

答案 0 :(得分:-1)

如果您正在使用Visual Studio& Windows形成这项任务非常容易。

您只需创建一个新的Windows窗体项目并从工具箱中拖动计时器。你会得到一个很好的观点。

enter image description here

之后,在Timer属性中设置间隔。 滴答之间有五秒钟的延迟。

enter image description here

最后,只需双击timer1和下面的代码来处理你的逻辑生成,不能再简单了。

    private void timer1_Tick(object sender, EventArgs e)
    {

    }

我真的推荐Visual Studio社区,最重要的是它是免费的!

在此处下载:https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx