1 Star 1 Fork 0

Eureka/omrom

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
worktimesetwindow.cpp 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
Eureka 提交于 2024-02-01 10:11 . 2/1 10
#include "worktimesetwindow.h"
#include "ui_worktimesetwindow.h"
WorkTimeSetWindow::WorkTimeSetWindow(QWidget *parent)
: QWidget(parent)
, ui(new Ui::WorkTimeSetWindow)
{
ui->setupUi(this);
this->setWindowTitle("设置PLC读取时间");
ui->lineEdit->setText(QString::number(AppSettings::getInstance()->getIntervalTime()));
ui->lineEdit_2->setText(QString::number(AppSettings::getInstance()->getStopTime()));
}
WorkTimeSetWindow::~WorkTimeSetWindow()
{
delete ui;
}
void WorkTimeSetWindow::on_pushButton_clicked()
{
int interval = ui->lineEdit->text().toInt();
int stop = ui->lineEdit_2->text().toInt();
if(interval != 0 && stop != 0){
AppSettings::getInstance()->setIntervalTime(interval);
AppSettings::getInstance()->setStopTime(stop);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/H1145998948/omrom.git
git@gitee.com:H1145998948/omrom.git
H1145998948
omrom
omrom
master

搜索帮助