本文整理汇总了TypeScript中phosphor/lib/ui/tabbar.TabBar.insertTab方法的典型用法代码示例。如果您正苦于以下问题:TypeScript TabBar.insertTab方法的具体用法?TypeScript TabBar.insertTab怎么用?TypeScript TabBar.insertTab使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类phosphor/lib/ui/tabbar.TabBar
的用法示例。
在下文中一共展示了TabBar.insertTab方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: insertWidget
/**
* Insert a widget into the tab panel at a specified index.
*
* @param index - The index at which to insert the widget.
*
* @param widget - The widget to insert into to the tab panel.
*
* #### Notes
* If the widget is already contained in the panel, it will be moved.
*
* The widget's `title` is used to populate the tab.
*/
insertWidget(index: number, widget: Widget): void {
if (widget !== this.currentWidget) {
widget.hide();
}
this._tabContents.insertWidget(index, widget);
this._tabBar.insertTab(index, widget.title);
}