Angular-material7-expansion-panel

提供:Dev Guides
移動先:案内検索

角材7-拡張パネル

Angular Directiveである <mat-expansion-panel> を使用して、拡張可能な詳細v/sサマリービューを作成します。

  • <mat-expansion-panel-header> -ヘッダーセクションを表します。 パネルの概要を含み、パネルを展開または折りたたむためのコントロールとして機能します。
  • <mat-panel-title> -パネルのタイトルを表します。
  • <mat-panel-description> -パネルの概要を表します。
  • <mat-action-row> -下部のアクションパネルを表します。

この章では、Angular Materialを使用して拡張コントロールを描画するために必要な構成を紹介します。

角度アプリケーションを作成する

次の手順に従って、_Angular 6-Project Setup_章で作成したAngularアプリケーションを更新します-

Step Description
1 Create a project with a name materialApp as explained in the Angular 6 - Project Setup chapter.
2 Modify app.module.ts, app.component.ts, app.component.css and app.componentl as explained below. Keep rest of the files unchanged.
3 Compile and run the application to verify the result of the implemented logic.

変更されたモジュール記述子 app.module.ts の内容は次のとおりです。

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatExpansionModule, MatInputModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
   declarations: [
      AppComponent
   ],
   imports: [
      BrowserModule,
      BrowserAnimationsModule,
      MatExpansionModule, MatInputModule,
      FormsModule,
      ReactiveFormsModule
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

以下は、変更されたHTMLホストファイル app.componentl の内容です。

<mat-expansion-panel>
   <mat-expansion-panel-header>
      <mat-panel-title>
         Personal data
      </mat-panel-title>
      <mat-panel-description>
         Type name and age
      </mat-panel-description>
   </mat-expansion-panel-header>
   <mat-form-field>
      <input matInput placeholder="Name">
   </mat-form-field>
   <mat-form-field>
      <input matInput placeholder="Age">
   </mat-form-field>
</mat-expansion-panel>

結果

結果を確認します。

拡張パネル

詳細

  • 最初に、mat-expansion-panelを使用して拡張パネルを作成しました。
  • 次に、タイトル、サブタイトル、コンテンツを追加しました。