当前位置:  开发笔记 > 编程语言 > 正文

在C#中使用Timer

如何解决《在C#中使用Timer》经验,为你挑选了2个好方法。

我试图在c#中使表单在x时间内不可见.有任何想法吗?

谢谢,乔恩



1> Matt Hamilto..:

BFree在我测试时发布了类似的代码,但这是我的尝试:

this.Hide();
var t = new System.Windows.Forms.Timer
{
    Interval = 3000 // however long you want to hide for
};
t.Tick += (x, y) => { t.Enabled = false; this.Show(); };
t.Enabled = true;



2> Robert Venab..:

快速而肮脏的解决方案利用封闭.无需定时器!

private void Invisibilize(TimeSpan Duration)
    {
        (new System.Threading.Thread(() => { 
            this.Invoke(new MethodInvoker(this.Hide));
            System.Threading.Thread.Sleep(Duration); 
            this.Invoke(new MethodInvoker(this.Show)); 
            })).Start();
    }

例:

//使表单隐藏5秒钟

Invisibilize(new TimeSpan(0,0,5));

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有