Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / verifywindow.cpp
陈实 on 7 Mar 2024 309 bytes 界面优化
#include "verifywindow.h"
#include "ui_verifywindow.h"

VerifyWindow::VerifyWindow(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::VerifyWindow)
{
    ui->setupUi(this);
}

VerifyWindow::~VerifyWindow()
{
    delete ui;
}

void VerifyWindow::showDevice()
{
    ui->stackedWidget->setCurrentIndex(1);
}