NodeWebkit win.title don not refresh title windows



我需要更改我的应用程序的标题:

var gui = require('nw.gui');
var win = gui.Window.get();
win.title='My new title'; // Don't refresh title
// Force reflesh
win.resizeBy(-1, 0);
win.resizeBy(1, 0);

有什么最好的解决方案吗?在 Windows 7 上测试。

您可以在onLoad或正在使用的任何脚本中执行此操作

document.title = 'Your new title';

相关内容

  • 没有找到相关文章

最新更新