boilerplate-nodejs icon indicating copy to clipboard operation
boilerplate-nodejs copied to clipboard

frameless window can not resize

Open xland opened this issue 1 year ago • 0 comments

Frameless window can not resize OS:Windows 10

  const mainWindow = gui.Window.create({frame:false}); //frame less
  mainWindow.onClose = () => gui.MessageLoop.quit();
  mainWindow.setContentSize({width: 400, height: 250});
  mainWindow.setContentView(createBrowser());
  mainWindow.center();
  mainWindow.activate();
  mainWindow.setResizable(true);  // can not resize

xland avatar Apr 23 '24 05:04 xland