you importing the wrong dialog.
MatDialogModule is to be put in your module.
MatDialog is for your component.
So:
import {MatDialog} from '@angular/material/dialog';
constructor(public dialog: MatDialog) {}
openDialog() {
this.dialog.open(DialogStudyModeComponent);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…