本文整理汇总了TypeScript中@jupyterlab/apputils.InstanceTracker.forEach方法的典型用法代码示例。如果您正苦于以下问题:TypeScript InstanceTracker.forEach方法的具体用法?TypeScript InstanceTracker.forEach怎么用?TypeScript InstanceTracker.forEach使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@jupyterlab/apputils.InstanceTracker
的用法示例。
在下文中一共展示了InstanceTracker.forEach方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
execute: () => {
let options = Terminal.defaultOptions;
if (options.fontSize > 9) {
options.fontSize--;
tracker.forEach(widget => { widget.fontSize = options.fontSize; });
}
},
示例2:
execute: () => {
let options = Terminal.defaultOptions;
if (options.fontSize < 72) {
options.fontSize++;
tracker.forEach(widget => {
widget.content.fontSize = options.fontSize;
});
}
},
示例3:
execute: () => {
terminalTheme = terminalTheme === 'dark' ? 'light' : 'dark';
let options = Terminal.defaultOptions;
options.theme = terminalTheme;
tracker.forEach(widget => {
if (widget.content.theme !== terminalTheme) {
widget.content.theme = terminalTheme;
}
});
commands.notifyCommandChanged(CommandIDs.toggleTheme);
},