摘要:
QStandardItemModel是一个数据项它可以把数据组成一个数据项插入另一个QStandardItemModel类模型里。 最后将模型插入到listview中。 阅读全文
摘要:
QString提供了处理字符的函数。 string没有。 阅读全文
摘要:
ItemModel = new QStandardItemModel(this);ItemModel->removeRows(0,ItemModel->rowCount()); ItemModel->removeRow(1);ItemModel->removeRows(0,5); 阅读全文
摘要:
#include<>是让系统在系统路径寻找该文件,再去当前目录寻找。 #Include""是让系统在当前路径寻找路径,找不到再去系统路径寻找。 阅读全文
摘要:
头文件#include<QTextCodec>在函数中添加。 out.setCodec(QTextCodec::codecForName("UTF-8"));//设定编码问题。 QString k="学号 "; QString k1="姓名 "; QString k2="班级 "; QString 阅读全文