gpt4 book ai didi

winforms - WinForm超时后自动关闭?

转载 作者:行者123 更新时间:2023-12-03 05:17:55 24 4
gpt4 key购买 nike

在 Framework 4.0 中,我有一个从另一个窗体打开的 WinForm,显示一些内容和进度条,然后就坐在那里。如果用户不手动关闭它,我想在 n 秒后关闭该“弹出”表单。最聪明的方法是什么?

谢谢。

最佳答案

以所需的时间间隔启动计时器,然后当它第一次滴答时,关闭表单。像这样的事情

private Timer _timer;

public PopupForm()
{
InitializeComponent();
_timer = new Timer();
_timer.Interval = 5000; // interval in milliseconds here.
_timer.Tick += (s, e) => this.Close();
_timer.Start();
}

实际上,最聪明的方法可能是将其放入其自己的 StartCountdown() 方法中,该方法将时间作为参数。严格来说,这样的逻辑通常不应该出现在构造函数中......

关于winforms - WinForm超时后自动关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7519832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com