本文整理匯總了TypeScript中@angular/cdk/overlay.OverlayRef類的典型用法代碼示例。如果您正苦於以下問題:TypeScript OverlayRef類的具體用法?TypeScript OverlayRef怎麽用?TypeScript OverlayRef使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了OverlayRef類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: ngAfterViewInit
ngAfterViewInit() {
this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef);
this._overlayRef = this._overlay.create({
positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(),
hasBackdrop: true
});
this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach());
}
示例2: createModal
// Create component to ApplicationRef
private createModal(): void {
this.overlayRef = this.overlay.create();
this.modalRef = this.overlayRef.attach(new ComponentPortal(NzModalComponent));
}
示例3: destroyModal
destroyModal(): void {
if (this.modalRef) {
this.overlayRef.dispose();
this.modalRef = null;
}
}
示例4: close
close() {
this.overlayRef.dispose();
}
示例5: close
close(): void {
this.overlayRef.dispose();
}
示例6: openDialog
openDialog() {
this._overlayRef.attach(this._portal);
}
示例7: ngOnDestroy
ngOnDestroy() {
this._overlayRef.dispose();
}