
Qt5
文章平均质量分 50
qq_41256839
这个作者很懒,什么都没留下…
展开
-
QT、MYSQL驱动编译
Qt mysql 驱动编译原创 2021-12-30 15:58:45 · 336 阅读 · 0 评论 -
QQueue与struct
typedef struct text{int index;bool flag;}Text_Stu;QQueue<Text_Stu> q;Text_Stu stu;stu.index = 1;stu.flag = false;q.enqueue(stu);qDebug() << q.head().index;可得到打印值为1。原创 2020-12-18 23:39:55 · 211 阅读 · 2 评论 -
Qt LineEdit设置为不可编辑状态:
Qt LineEdit设置为不可编辑状态:QLineEdit *lEdit = new QLineEdit();lEdi -> setReadOnly(true); //只读或者lEdi ->setEnabled(False); //不可编辑原创 2020-12-13 11:53:46 · 10450 阅读 · 0 评论