上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: https://www.cnblogs.com/hamsterPP/p/5184491.html tortoise git 密钥配置 https://blog.csdn.net/qq_32614411/article/details/84957759 阅读全文
posted @ 2019-08-26 17:53 Truman001 阅读(247) 评论(0) 推荐(0) 编辑
摘要: emit函数之后的内容的执行顺序与信号与槽的连接方式有关。如果需要立即执行emit之后的函数,就需要设置为Qt::QueuedConnection,如果要立即执行槽函数,就需要设置为Qt::DirectConnection。 https://blog.csdn.net/itas109/article 阅读全文
posted @ 2019-08-26 16:57 Truman001 阅读(467) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; //C++11之前 bool FileExist1(const string &filename) { ifstream f(filename.c_str()); return f.good();//检测流的状态是否正常。当错误的状态flags (eofbit,... 阅读全文
posted @ 2019-08-26 16:35 Truman001 阅读(3083) 评论(0) 推荐(0) 编辑
摘要: windows+W快捷键 阅读全文
posted @ 2019-08-26 15:16 Truman001 阅读(147) 评论(0) 推荐(0) 编辑
摘要: forever{ ... } //等同于for( ; ; ) 阅读全文
posted @ 2019-08-26 12:56 Truman001 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 想让Qt程序在XP系统上运行,最好不要使用VS生成Qt项目,后续可能会出现一系列问题 Qt5.7之后的版本不支持在XP系统上运行 XP系统也分为32位和64位,首先确定清楚XP系统的信息,然后选择合适的Qt版本 如果安装的Qt位64位的,设置子系统所需的最低版本为5.01会失效,要求安装的Qt为32 阅读全文
posted @ 2019-08-25 14:52 Truman001 阅读(2158) 评论(0) 推荐(0) 编辑
摘要: 待添加 阅读全文
posted @ 2019-08-25 14:52 Truman001 阅读(117) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_31073871/article/details/83117430 阅读全文
posted @ 2019-08-14 22:38 Truman001 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1 QToolButton的setMenu()为button设置一个菜单,Action是通过QMenu添加的。对于已有的QToolButton,menu()方法返回QMenu对象,QMenu的addAction()方法可以添加QAction 2 可通过设置button透明的方式设置toolbutto 阅读全文
posted @ 2019-08-14 21:59 Truman001 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 1 添加头文件#include <QComboBox> 2 常用信号函数 3 常用槽函数 4 使用addItem函数添加不会触发currentIndexChanged信号, 使用InsertItem函数添加会触发currentIndexChanged信号 使用clear函数会触发currentInd 阅读全文
posted @ 2019-08-14 21:44 Truman001 阅读(335) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页