繁体   English   中英

尝试使用 PySimpleGUI 退出 While True 循环

[英]Trying to Exit a While True Loop using PySimpleGUI

这是我的代码:

主要.py:

import PySimpleGUI as sg
import Config
import threading


def main():
    layout = [  [sg.Text('Real Time Raspberry Pi Sniffer')],
            [sg.Button('Run While Loop'), sg.Button('Exit')],     # a couple of buttons
            [sg.Output(size=(60,15))] ]         # an output area where all print output will go
            #[sg.Input(key='_IN_')] ]             # input field where you'll type command

    window = sg.Window('Realtime Shell Command Output', layout)

    while True:            # Event Loop
        event, values = window.Read()
        if event == 'Run While Loop':             
            t1 = threading.Thread(target = Config.whileLoop())
            t1.start()
        elif event == 'Exit' or event == WIN_CLOSED:
            print('CLICKED EXIT') 
            window.Close()

if __name__ == '__main__':
    main()

配置文件

from PySimpleGUI.PySimpleGUI import WIN_CLOSED
def whileLoop():
    state = True
    while (state == True):          
        print("It works!")  

我正在尝试创建在用户单击按钮时运行 while 循环的 GUI 窗口(在这种情况下,当他们单击“Run While Loop”时)。 但是,我遇到了一个问题,因为我的代码卡在了 Config.py 中的嵌套 while 循环中。 我希望代码能够退出 while 循环并在单击“退出”按钮时由程序停止。 我研究了线程,不知道还能做什么。 有什么帮助,谢谢!

我导入在Config.py中定义的类Func ,然后调用实例Func()的方法while_loop 为 while 循环是否继续运行设置一个标志 True 或 False。

示例代码

# Config.py

from time import sleep
from PySimpleGUI import WIN_CLOSED


class Func():

    def __init__(self):
        self.state = False
        self.count = 0

    def while_loop(self, window):
        while self.state:
            sleep(0.5)                                      # Simulate job done here
            self.count += 1
            window.write_event_value("Done", self.count)    # update GUI by event
# main.py

from time import sleep
from threading import Thread
import PySimpleGUI as sg
import Config


def main():

    layout = [
        [sg.Text('Real Time Raspberry Pi Sniffer')],
        [sg.Button('Start'), sg.Button('Stop'), sg.Button('Exit')],
        [sg.StatusBar('', size=60, key='Status')],
    ]
    window = sg.Window('Realtime Shell Command Output', layout, enable_close_attempted_event=True)
    status = window['Status']
    func = Config.Func()
    thread = None
    while True:

        event, values = window.read()

        if event in (sg.WINDOW_CLOSE_ATTEMPTED_EVENT, 'Exit'):
            func.state = False
            sleep(0.5)  # Wait thread to stop
            break
        elif event == 'Start' and thread is None:
            func.state = True
            func.count = 0
            thread = Thread(target=func.while_loop, args=(window,), daemon=True)
            thread.start()
        elif event == 'Stop':
            func.state = False
            thread = None
        elif event == 'Done':
            count = values[event]
            status.update(f"Job done at #{count:0>3}")

    window.Close()

if __name__ == '__main__':
    main()

这是一个猜测,因为我之前没有做过你正在尝试的事情。

也许如果你改变你的 config.py 是这样的:

state=True
def whileLoop():
   while (state == True):          
       print("It works!") 

(使 state 成为模块全局标志)

并修改您的事件循环,如:

while True:            # Event Loop
    event, values = window.Read()
    if event == 'Run While Loop':             
        t1 = threading.Thread(target = Config.whileLoop)
        t1.start()
    elif event == 'Exit' or event == WIN_CLOSED:
        print('CLICKED EXIT') 
        Config.state = False # set the exit flag
        t1.join() # I'm not sure about this, could try without
        window.Close()

同样,我已经使用 Python 很长时间了,但从来没有这样。

就在这里: t1 = threading.Thread(target = Config.whileLoop())
您在设置线程变量时调用了 Config.whileLoop()。 您必须改为t1 = threading.Thread(target = Config.whileLoop)
它实际上并没有调用目标函数Config.whileLoop t1.start()实际上会调用它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM