线程过程完成后停止功能
我做了一点GUI来从用户那里获得输入,其中一个主要过程是使用线程,并且由于该命令启动,因此有一个事件触发无尽的进度栏以模拟WAITIT时间。
但是我想让它真的很有用,但是在完成过程后,我找不到停止进度栏的方法。
因此,任何帮助都将是很棒的。
i made a little GUI to take input from the user one of the main process is withing a thread and since that command starts there's an event that triggers an endless progress bar to simulate waitting time.
But i want to make it really usefull, but i can't find a way stop the progressbar when the process is done.
so any help on that, would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
返回
语句放在线程完成后将被击中的代码You can place a
return
statement in the code that will be hit when the thread is done