如何使用 wxPython 检测窗口何时最小化?
我正在编写一个小型 wxPython 实用程序。
我想使用一些事件来检测用户何时最小化应用程序/窗口。
我环顾四周,但没有找到像 wx.EVT_MINIMIZE 这样我可以绑定的事件。
有人知道可以用来检测这一点的方法吗?
I am writing a small wxPython utility.
I would like to use some event to detect when a user minimizes the application/window.
I have looked around but did not find an event like wx.EVT_MINIMIZE that I could bind to.
Anyone know of a way that can be used to detect this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 wx.EVT_ICONIZE 事件添加处理程序。
Add a handler for the wx.EVT_ICONIZE event.