如何在 xulrunner 重新启动之前收到通知?
我在桌面应用程序中使用 Xulrunner Extensions Manager,并且希望在重新启动之前收到通知。有办法吗?
(窗口的 onclose() 方法将不起作用..)
I'm using the Xulrunner Extensions Manager in my desktop application, and I would like to be notified before a restart. Is there a way?
(the window's onclose() methods will not work..)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为
“quit-application-requested”
或“quit-application”
通知添加观察者。如果这是重新启动而不是关闭,则数据参数将为“restart”
。 (这些通知在关闭数据参数方面有所不同;“quit-application-requested”
传递null
,而“quit-application”
> 通过“关闭”
。)You can add observers for the
"quit-application-requested"
or the"quit-application"
notifications. The data parameter will be"restart"
if this is a restart rather than a shutdown. (The notifications differ as to what the data parameter is for a shutdown;"quit-application-requested"
passesnull
while"quit-application"
passes"shutdown"
.)