Angular-material7-button-toggle

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

Angular Material 7-トグルボタン

Angular Directiveである <mat-button-toggle> は、マテリアルスタイルとアニメーションを使用してトグルまたはオン/オフボタンを作成するために使用されます。 mat-button-toggleボタンは、ラジオボタンまたはチェックボックスとして動作するように構成できます。 通常、これらは <mat-button-toggle-group> の一部です。

この章では、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 {MatButtonToggleModule, MatIconModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
   declarations: [
      AppComponent
   ],
   imports: [
      BrowserModule,
      BrowserAnimationsModule,
      MatButtonToggleModule, MatIconModule,
      FormsModule,
      ReactiveFormsModule
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

変更されたCSSファイル app.component.css の内容は次のとおりです。

.tp-selected-value {
   margin: 15px 0;
}

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

<mat-button-toggle-group #group = "matButtonToggleGroup">
   <mat-button-toggle value = "left">
      <mat-icon>format_align_left</mat-icon>
   </mat-button-toggle>
   <mat-button-toggle value = "center">
      <mat-icon>format_align_center</mat-icon>
   </mat-button-toggle>
   <mat-button-toggle value = "right">
      <mat-icon>format_align_right</mat-icon>
   </mat-button-toggle>
   <mat-button-toggle value = "justify" disabled>
      <mat-icon>format_align_justify</mat-icon>
   </mat-button-toggle>
</mat-button-toggle-group>
<div class = "tp-selected-value">Selected value: {{group.value}}</div>

結果

結果を確認します。

ボタンの切り替え

詳細

  • 最初に、mat-button-toggle-groupを使用してトグルボタングループを作成しました。
  • 次に、mat-button-toggleを使用してトグルボタンをグループに追加しました。