如何使用tkinter python实现暂停和恢复按钮功能

时间:2018-10-05 06:08:49

标签: python tkinter pause

Tkinter.Button(self, text='Pause', command=self.pause_program).grid(row=7, columnspan=2, rowspan=3)
    def pause_program(self):

        input("Press Enter to continue...")
        time.sleep(2)

,然后在程序的其他部分下方。 其余程序从源中获取数据,想要实现一个“暂停并继续”按钮以通过仅按一下按钮并在需要时将其恢复回来来暂停程序。

0 个答案:

没有答案