美文网首页
electron setParentWindow绑定父窗口后,会

electron setParentWindow绑定父窗口后,会

作者: SailingBytes | 来源:发表于2021-09-26 11:26 被阅读0次

    electron setParentWindow绑定父窗口后,有时会出现center()不生效问题?

    win.setParentWindow(***父窗口***);

    win.center();

    win.show();

    解决办法:

    使用setTimeout异步执行

    win.setParentWindow(***父窗口***);

    setTimeout(() => {

        win.center();

        win.show();

    }, 300) 

    相关文章

      网友评论

          本文标题:electron setParentWindow绑定父窗口后,会

          本文链接:https://www.haomeiwen.com/subject/tqdqnltx.html