關閉Pyglet後窗口「X」,我認爲事件「on_close」會被觸發,但似乎並非如此。我做錯了什麼?關閉Pyglet中窗口的事件
window = pyglet.window.Window(fullscreen=False)
@window.event
def on_draw():
sprite.draw()
label.draw()
def on_close():
print("I'm closing now") #<- this never happens
完整的腳本這裏(175線): https://github.com/VirToReal/py-slideshow/blob/master/slideshow.py
在'on_close()'函數中加入'window.close()'語句。 –
問題是,函數「on_close」永遠不會被調用,我更新了完整應用程序的鏈接 –