“Dialog Mat” Kode Jawaban

.mat-dialog-kontainer

// Overlay-based components have a panelClass property (or similar) 
// that can be used to target the overlay pane.

this.dialog.open(DialogExampleComponent, { 
	panelClass: 'dialog-container-custom' 
});

// then style it from there

.dialog-container-custom .mat-dialog-container {
	padding: 0;
	background: grey;
}
Ukulily

Dialog Mat

@Component({/* ... */})
export class YourDialog {
  constructor(public dialogRef: MatDialogRef<YourDialog>) { }

  closeDialog() {
    this.dialogRef.close('Pizza!');
  }
}
MitchAloha

Jawaban yang mirip dengan “Dialog Mat”

Pertanyaan yang mirip dengan “Dialog Mat”

Lebih banyak jawaban terkait untuk “Dialog Mat” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya