TSI_Config/keyphase.cpp

22 lines
306 B
C++
Raw Normal View History

2024-12-17 18:53:41 +08:00
#include "keyphase.h"
#include "ui_keyphase.h"
KeyPhase::KeyPhase(QWidget *parent)
: QDialog(parent)
, ui(new Ui::KeyPhase)
{
ui->setupUi(this);
2025-03-11 16:42:00 +08:00
ui->widget_body->setProperty("flag", "body");
2024-12-17 18:53:41 +08:00
}
KeyPhase::~KeyPhase()
{
delete ui;
}
2025-02-18 10:55:51 +08:00
void KeyPhase::on_pushButton_confirm_clicked()
{
}