作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
documentation提供显示标签栏的选项( win.toggleTabBar()
)。但就我的一生而言,我只是无法让它发挥作用。
文档说“切换标签栏的可见性 如果启用了原生标签 ”。什么是原生标签?我如何启用它们。
我希望能够在 Electron 中显示标签栏。
最佳答案
根据 docs :
tabbingIdentifier String (optional) - Tab group name, allows opening the window as a native tab on macOS 10.12+. Windows with the same tabbing identifier will be grouped together. This also adds a native new tab button to your window's tab bar and allows your app and window to receive the new-window-for-tab event.
tabbingIdentifier
创建新的 BrowserWindow 时。
const { BrowserWindow } = require('electron')
const win = new BrowserWindow({
tabbingIdentifier: 'myTabs'
});
关于javascript - win.toggleTabBar() 在 Electron 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59249853/
documentation提供显示标签栏的选项( win.toggleTabBar() )。但就我的一生而言,我只是无法让它发挥作用。 文档说“切换标签栏的可见性 如果启用了原生标签 ”。什么是原生标
我是一名优秀的程序员,十分优秀!