electron_yue
electron_yue copied to clipboard
Is it possible to use Electron's BaseWindow instead of gui.Window?
Electron is using BaseWindow internally for creating windows. In the latest versions, it is exposed but not documented officially.
BaseWindow has a method setContentView
that accepts a native View such as webContentsView
or nativeImageView
.
So would it be possible to set gui.Container as a contentView of the BaseWindow?
Thanks