Angular Material 7 - 工具栏


<mat-toolbar>是一个 Angular 指令,用于创建一个工具栏来显示标题、标题或任何操作按钮

  • <mat-toolbar> - 代表主容器。

  • <mat-toolbar-row> - 添加新行。

在本章中,我们将展示使用 Angular Material 绘制工具栏控件所需的配置。

创建角度应用程序

按照以下步骤更新我们在Angular 6 - 项目设置章节中创建的 Angular 应用程序 -

描述
1 创建一个名为materialApp的项目,如Angular 6 - 项目设置一章中所述。
2 修改app.module.tsapp.component.tsapp.component.cssapp.component.html,如下所述。保持其余文件不变。
3 编译并运行应用程序以验证实现逻辑的结果。

以下是修改后的模块描述符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 {MatToolbarModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
   declarations: [
      AppComponent
   ],
   imports: [
      BrowserModule,
      BrowserAnimationsModule,
      MatToolbarModule,
      FormsModule,
      ReactiveFormsModule
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

以下是修改后的 CSS 文件app.component.css的内容。

.filler {
   flex: 1 1 auto;
}
.gap {
   margin-right: 10px;
}

以下是修改后的 HTML 主机文件app.component.html的内容。

<mat-toolbar color = "primary">
   <span class = "gap">File</span>
   <span>Edit</span>
   <span class = "filler"></span>
   <span>About</span>
</mat-toolbar>

结果

验证结果。

工具栏

细节

  • 首先,我们创建了一个跨越整个页面的工具栏。
  • 然后添加标签。