Files
Tang1705 6e7d27947c v1.8
2020-05-26 20:10:33 +08:00

17 lines
374 B
C++

#include "Help.h"
Help::Help(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
this->setWindowIcon(QIcon(":/icon/image/common/icon.png"));
QPixmap *pixmap = new QPixmap(":/Reconstruction/image/reconstruction/help.png");
pixmap->scaled(ui.label->size(), Qt::KeepAspectRatio);
ui.label->setScaledContents(true);
ui.label->setPixmap(*pixmap);
}
Help::~Help()
{
}