showmadanlabelform.cpp 342 B

12345678910111213141516171819
  1. #include "showmadanlabelform.h"
  2. #include "ui_showmadanlabelform.h"
  3. ShowMaDanLabelForm::ShowMaDanLabelForm(QWidget *parent) :
  4. QWidget(parent),
  5. ui(new Ui::ShowMaDanLabelForm)
  6. {
  7. ui->setupUi(this);
  8. }
  9. ShowMaDanLabelForm::~ShowMaDanLabelForm()
  10. {
  11. delete ui;
  12. }
  13. void ShowMaDanLabelForm::on_backButton_clicked()
  14. {
  15. emit back();
  16. }