當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript a11y.FocusMonitor類代碼示例

本文整理匯總了TypeScript中@angular/cdk/a11y.FocusMonitor的典型用法代碼示例。如果您正苦於以下問題:TypeScript FocusMonitor類的具體用法?TypeScript FocusMonitor怎麽用?TypeScript FocusMonitor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了FocusMonitor類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor(
   public _intl: MatStepperIntl,
   private _focusMonitor: FocusMonitor,
   private _element: ElementRef<HTMLElement>,
   changeDetectorRef: ChangeDetectorRef) {
   _focusMonitor.monitor(_element.nativeElement, true);
   this._intlSubscription = _intl.changes.subscribe(() => changeDetectorRef.markForCheck());
 }
開發者ID:mstawick,項目名稱:material2,代碼行數:8,代碼來源:step-header.ts

示例2: constructor

 constructor(private _focusMonitor: FocusMonitor, private _element: ElementRef) {
   _focusMonitor.monitor(_element.nativeElement, true);
 }
開發者ID:bullhorn,項目名稱:novo-elements,代碼行數:3,代碼來源:step-header.component.ts

示例3: constructor

 constructor(
   private _focusMonitor: FocusMonitor,
   private _element: ElementRef,
   renderer: Renderer2) {
   _focusMonitor.monitor(_element.nativeElement, renderer, true);
 }
開發者ID:StevensonNelli,項目名稱:material2,代碼行數:6,代碼來源:step-header.ts

示例4: ngOnDestroy

 ngOnDestroy() {
   this._intlSubscription.unsubscribe();
   this._focusMonitor.stopMonitoring(this._elementRef);
 }
開發者ID:Nodarii,項目名稱:material2,代碼行數:4,代碼來源:step-header.ts

示例5: ngOnDestroy

 ngOnDestroy() {
   this._focusMonitor.stopMonitoring(this._element.nativeElement);
 }
開發者ID:bullhorn,項目名稱:novo-elements,代碼行數:3,代碼來源:step-header.component.ts

示例6: focus

 /** Focuses the step header. */
 focus() {
   this._focusMonitor.focusVia(this._elementRef, 'program');
 }
開發者ID:codef0rmer,項目名稱:material2,代碼行數:4,代碼來源:step-header.ts


注:本文中的@angular/cdk/a11y.FocusMonitor類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。