创建和控制视图
进程:主进程
BrowserView
被用来让 BrowserWindow
嵌入更多的 web 内容。 它就像一个子窗口,除了它的位置是相对于父窗口。 这意味着可以替代webview
标签.
// 在主进程中.
const { BrowserView, BrowserWindow } = require('electron')
let win = new BrowserWindow({ width: 800, height: 600 })
win.on('closed', () => {
win = null
})
let view = new BrowserView()
win.setBrowserView(view)
view.setBounds({ x: 0, y: 0, width: 300, height: 300 })
view.webContents.loadURL('https://electronjs.org')
参数
Object (可选)webPreferences
Object (可选) - 详情请看 BrowserWindow.
返回 BrowserView[]
- 所有打开的 BrowserViews 的数组。
webContents
WebContents
返回 BrowserView | null
- 如果内容不属于BrowserView,则它拥有返回的webContents
或null
。
id
Integer
返回 BrowserView
- 带有id
的视图.
使用 new BrowserView
创建的对象具有以下属性:
视图的WebContents
对象
视图的唯一ID Integer
.
使用 new BrowserView
创建的对象具有以下实例方法:
强制关闭视图, 不会为网页发出 unload
和 beforeunload
事件。 完成视图后, 请调用此函数, 以便尽快释放内存和其他资源。
返回 Boolean
-判断窗口是否被销毁
options
Objectwidth
Boolean (optional) - Iftrue
, the view's width will grow and shrink together with the window.false
by default.height
Boolean (optional) - Iftrue
, the view's height will grow and shrink together with the window.false
by default.horizontal
Boolean (optional) - Iftrue
, the view's x position and width will grow and shrink proportionally with the window.false
by default.vertical
Boolean (optional) - Iftrue
, the view's y position and height will grow and shrink proportionally with the window.false
by default.
bounds
Rectangle
调整视图的大小,并将它移动到窗口边界
返回 Rectangle
The bounds
of this BrowserView instance as Object
.
color
String - 颜色值格式为#aarrggbb
或#argb
, 透明度为可选参数.