如何判断用户是否尝试关闭 C++ 中的窗口?
当用户单击窗口上的关闭按钮时,我需要中断 while 循环,但我不知道要检查什么。我正在使用 allegro 来运行 GUI。
I need to break a while loop when the use clicks the close button on the window, but I don't know what to check for. I'm using allegro to run the GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用 Allegro 4: set_close_button_callback()
使用 Allegro 5,则更像是:
请参阅手册了解所有详细信息。
If using Allegro 4: set_close_button_callback()
With Allegro 5, it's more like:
See the manual for all the details.