每分钟刷新一次
在表单中,有一个标签。它每分钟显示 Web 服务是否连接。如何编写代码来重复这个过程?我会使用线程还是计时器?请分享我。
In a form, there is a label. It shows whether web service is connected or not at every minutes. How to code to repeat this process? Will I use the thread or timer? Please share me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要一个计时器对象以便每 X 分钟运行一次代码。仅当检查需要一段时间并且您希望表单在此期间保持响应时,才需要使用单独的线程来检查 Web 服务。
使用计时器非常简单:
You will need a timer object in order to run the code every X minutes. Using a separate thread to check the web service only needs to be done if it will take a while to check and you want your form to remain responsive during this time.
Using a timer is very easy: