本文整理汇总了TypeScript中tabris.Composite.onAddChild方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Composite.onAddChild方法的具体用法?TypeScript Composite.onAddChild怎么用?TypeScript Composite.onAddChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tabris.Composite
的用法示例。
在下文中一共展示了Composite.onAddChild方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: _initLayout
widgetCollection = widget.find(selector);
fooCollection = widget.find(Foo);
fooCollection = widget.find(Bar);
const test: string = widget.find(Bar)[0].test;
// Events
const target: Composite = widget;
const timeStamp: number = 0;
const type: string = 'foo';
const child: Widget = widgetA;
const index: number = 0;
const addChildEvent: CompositeAddChildEvent = {target, timeStamp, type, child, index};
const removeChildEvent: CompositeRemoveChildEvent = {target, timeStamp, type, child, index};
widget
.onAddChild((event: CompositeAddChildEvent) => {})
.onRemoveChild((event: CompositeRemoveChildEvent) => {});
class CustomComponent extends Composite {
public foo: string;
constructor(props: Properties<CustomComponent>) {
super(props);
this.set(props);
this.set<CustomComponent>({visible: true, foo: 'bar'});
this._checkDisposed();
this._setParent(new Composite());
this._setParent(new Composite(), 2);
}
protected _initLayout(param: {layout?: Layout}) {
super._initLayout();