Materiale angolare 7 - Tooltip

Il <MatTooltip>, una direttiva angolare, viene utilizzata per mostrare una descrizione comando in stile materiale.

In questo capitolo, mostreremo la configurazione richiesta per mostrare un suggerimento utilizzando Angular Material.

Di seguito è riportato il contenuto del descrittore del modulo modificato 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 {MatButtonModule,MatTooltipModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
   declarations: [
      AppComponent
   ],
   imports: [
      BrowserModule,
      BrowserAnimationsModule,
      MatButtonModule,MatTooltipModule,
      FormsModule,
      ReactiveFormsModule
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

Di seguito è riportato il contenuto del file host HTML modificato app.component.html.

<button mat-raised-button
   matTooltip = "Sample Tooltip"
   aria-label = "Sample Tooltip">
   Click Me!
</button>

Risultato

Verifica il risultato.

Dettagli

  • Qui, abbiamo creato un pulsante usando il pulsante mat al passaggio del mouse, mostreremo un suggerimento.