Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / checkmethodmanage.cpp
陈实 on 7 Mar 2024 382 bytes 界面优化
#include "checkmethodmanage.h"
#include "ui_checkmethodmanage.h"

CheckMethodManage::CheckMethodManage(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::CheckMethodManage)
{
    ui->setupUi(this);
    for(int i=2;i<7;i++)
        ui->tableWidget_2->horizontalHeader()->setSectionResizeMode(i,QHeaderView::Stretch);
}

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