electron销毁所有窗口

发布时间 2023-04-25 22:22:05作者: zhang_you_wu

在开发过程中,我们可能需要手动的去销毁窗口实例。

     //销毁所有窗口
        BrowserWindow.getAllWindows().forEach(item => {
          if (!item.isDestroyed()) {
            item.destroy()
          }
        })