Lines Matching refs:ComponentContent

1 # ComponentContent  chapter
3 ComponentContent表示组件内容的实体封装,其对象支持在非UI组件中创建与传递,便于开发者对弹窗类组件进行解耦封装。ComponentContent底层使用了BuilderNode,相关…
9 > 当前不支持在预览器中使用ComponentContent
15 import { ComponentContent } from '@kit.ArkUI';
18 ## ComponentContent section
24 ComponentContent的构造函数。
41 ComponentContent的构造函数。
59 ComponentContent的构造函数。
76 import { ComponentContent, NodeContent, typeNode } from "@kit.ArkUI"
115 column.addComponentContent(new ComponentContent<ParamsInterface>(this.getUIContext(),
154 import { ComponentContent } from "@kit.ArkUI";
185 …let contentNode = new ComponentContent(uiContext, wrapBuilder(buildText), new Params(this.message)…
205 传递reuse事件到ComponentContent中的自定义组件。
221 传递recycle事件到ComponentContent中的自定义组件。
228 import { ComponentContent } from '@kit.ArkUI';
277 …let contentNode = new ComponentContent(uiContext, wrapBuilder(buildText), new Params(this.message)…
298 立即释放当前ComponentContent,即ComponentContent对象与后端实体节点解除引用关系。
308 import { ComponentContent } from '@kit.ArkUI';
339 …let contentNode = new ComponentContent(uiContext, wrapBuilder(buildText), new Params(this.message)…
382 import { NodeController, FrameNode, ComponentContent, typeNode } from '@kit.ArkUI';
395 const componentContentMap: Array<ComponentContent<[Object]>> = new Array();
406 let component = new ComponentContent<Object>(context, wrapBuilder(buildText));