| 12345678910111213141516171819 |
- #include "showmadanlabelform.h"
- #include "ui_showmadanlabelform.h"
- ShowMaDanLabelForm::ShowMaDanLabelForm(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::ShowMaDanLabelForm)
- {
- ui->setupUi(this);
- }
- ShowMaDanLabelForm::~ShowMaDanLabelForm()
- {
- delete ui;
- }
- void ShowMaDanLabelForm::on_backButton_clicked()
- {
- emit back();
- }
|