You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
466 B
C++
20 lines
466 B
C++
1 year ago
|
#include "WaitForSearchWidget.h"
|
||
|
#include "ui_waitforsearchwidget.h"
|
||
|
|
||
|
WaitForSearchWidget::WaitForSearchWidget(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::WaitForSearchWidget)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
//ui->label->setText("正在搜索串口......");
|
||
|
//setWindowModality(Qt::ApplicationModal);
|
||
|
setAttribute(Qt::WA_ShowModal, true);
|
||
|
setWindowFlag(Qt::FramelessWindowHint);
|
||
|
}
|
||
|
|
||
|
WaitForSearchWidget::~WaitForSearchWidget()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|