Tkinter 和 win32api,而 True 会使应用程序崩溃

Tkinter and win32api, while True crashes app

我正在使用 tkinter 和 win32api。我已经声明了下一个函数:

def on_press():
        leftBtn = 0x01
        key = win32api.GetKeyState(leftBtn)
        if key < 0:
                print("Left click pressed")
                time.sleep(0.1)
                root.after(100,on_press)
        
root.after(100,on_press)

已经尝试执行 .after 以消除两个无限循环,但仍然崩溃。有答案吗??

Git 到我的项目(未完成...):https://github.com/alexcibubins/NoRecoilScript-notFinished-.git

def on_press():
        leftBtn = 0x01
        key = win32api.GetKeyState(leftBtn)
        if key < 0:
                print("Left click pressed")
                time.sleep(0.1)
        root.after(100, on_press)
        
root.after(100,on_press)