当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript PanelLayout.childCount方法代码示例

本文整理汇总了TypeScript中phosphor-panel.PanelLayout.childCount方法的典型用法代码示例。如果您正苦于以下问题:TypeScript PanelLayout.childCount方法的具体用法?TypeScript PanelLayout.childCount怎么用?TypeScript PanelLayout.childCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在phosphor-panel.PanelLayout的用法示例。


在下文中一共展示了PanelLayout.childCount方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

 model.contentChanged.connect(() => {
   let widget = renderer.render('text/markdown', model.toString());
   if (layout.childCount()) {
     layout.childAt(0).dispose();
   }
   layout.addChild(widget);
 });
开发者ID:ChinaQuants,项目名称:jupyterlab,代码行数:7,代码来源:widget.ts

示例2: updateTextEditor

 /**
  * Update the text editor model, creating a new text editor
  * widget and detaching the old one.
  */
 updateTextEditor(editor: IEditorModel) {
   let layout = this.layout as PanelLayout;
   if (layout.childCount() > 0) {
     layout.childAt(0).dispose();
   }
   layout.addChild(new CodeMirrorWidget(editor));
 }
开发者ID:sccolbert,项目名称:jupyter-js-notebook,代码行数:11,代码来源:widget.ts

示例3: list

 /**
  * Get an ordered list the toolbar item names.
  *
  * @returns A new array of the current toolbar item names.
  */
 list(): string[] {
   let names: string[] = [];
   let layout = this.layout as PanelLayout;
   for (let i = 0; i < layout.childCount(); i++) {
     let widget = layout.childAt(i);
     names.push(Private.nameProperty.get(widget));
   }
   return names;
 }
开发者ID:munshkr,项目名称:gakuon-editor,代码行数:14,代码来源:index.ts


注:本文中的phosphor-panel.PanelLayout.childCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。