1 Star 0 Fork 4

AmonYR/Qt_TrainTicketingSystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
substationinfowindow.cpp 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Takagi3 提交于 2022-12-14 17:09 . 最终版本
#include "substationinfowindow.h"
#include "ui_substationinfowindow.h"
/*
* Date: 2022/11/17
* Name: 王宇轩
* Student ID: 20301142
* Description: 这个类是列车信息查询是的子窗口,
* 显示一整条线路的经停站信息
*/
SubStationInfoWindow::SubStationInfoWindow(QWidget *parent) :
QWidget(parent),
ui(new Ui::SubStationInfoWindow)
{
ui->setupUi(this);
this->setFixedSize(this->geometry().size());
}
SubStationInfoWindow::~SubStationInfoWindow()
{
delete ui;
}
//获取经停站的信息,并展示在当前界面
void SubStationInfoWindow::receiveSubInfo(QSqlQuery result)
{
//清空上一次查询到的内容
int rowNum=ui->trainNumInfoTable->rowCount();
for(int i=0;i<rowNum;i++){
ui->trainNumInfoTable->removeRow(0);
}
int columns=ui->trainNumInfoTable->columnCount();
for(int i=0;result.next();i++){
//增加一行
ui->trainNumInfoTable->insertRow(i);
//填充每一列的数值
for(int j=0;j<columns;j++){
ui->trainNumInfoTable->setItem(i,j,new QTableWidgetItem(result.value(j).toString()));
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Amon152/qt_-train-ticketing-system-q.git
git@gitee.com:Amon152/qt_-train-ticketing-system-q.git
Amon152
qt_-train-ticketing-system-q
Qt_TrainTicketingSystem
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385