TSI_Config/keyphase.cpp
2025-03-11 16:42:00 +08:00

22 lines
306 B
C++

#include "keyphase.h"
#include "ui_keyphase.h"
KeyPhase::KeyPhase(QWidget *parent)
: QDialog(parent)
, ui(new Ui::KeyPhase)
{
ui->setupUi(this);
ui->widget_body->setProperty("flag", "body");
}
KeyPhase::~KeyPhase()
{
delete ui;
}
void KeyPhase::on_pushButton_confirm_clicked()
{
}