- 博客(14)
- 收藏
- 关注
转载 C++ 十进制整数转十六进制字符串
//i要转化的十进制整数,width转化后的宽度,位数不足则补0std::string dec2hex(int i, int width){ std::stringstream ioss; //定义字符串流 std::string s_temp; ...
2019-09-05 08:45:00 9032
转载 Qt 保持事件循环
#include <QApplication>//两种方式都可以qApp->processEvents();QApplication::processEvents(); ...
2019-03-12 14:49:00 388
转载 QDir
1.获取目录下的所有文件名 QDir dir(path);QStringList tempfiles = dir.entryList(QStringList() << "*.AWX", QDir::Files, QDir::Name); 2.目录不存在,则创建目录 ...
2018-10-25 11:08:00 694
转载 QLineEdit 密码输入框 隐藏
m_pLineEdit->setEchoMode(QLineEdit::PasswordEchoOnEdit);//输入时显示数字,失去焦点时显示圆点 m_pLineEdit->setEchoMode(QLineEdit::Password);...
2018-10-09 11:50:00 1513
转载 QLineEdit 添加默认的灰色提示字
m_pLineEdit->setPlaceholderText("123"); 转载于:https://my.oschina.net/u/3273849/blog/2236579...
2018-10-09 11:46:00 4746
转载 QTextEdit 只读 不可修改
m_pTextEdit->setReadOnly(true); 转载于:https://my.oschina.net/u/3273849/blog/1925591
2018-08-10 12:44:00 13262
转载 Qt 安装时的环境配置 (Linux)
Ubuntu sudo apt update sudo apt install gcc gcc-c++ g++ sudo apt install libgl1-mesa-dev sudo apt install libgl1-mesa-glx libgl...
2018-05-25 06:09:00 259
转载 QFileDialog 打开文件对话框
QString path = QFileDialog::getOpenFileName(NULL, tr("Open File"), ".", tr("Text Files(*.txt)")); if(!path.isEmpty()) { QFil...
2017-12-11 14:08:00 446
转载 Qt closeevent 重写关闭窗口事件
void MyWidget::closeEvent(QCloseEvent *event){ int closeApp = QMessageBox::question(this, "Note", "Do you really want to exit?"); if(cl...
2017-12-08 11:22:00 2503
转载 Qt setMouseTracking
这个属性保存的是部件跟踪鼠标是否生效。 如果鼠标跟踪失效(默认),当鼠标被移动的时候只有在至少一个鼠标按键被按下时,这个部件才会接收鼠标移动事件。 如果鼠标跟踪生效,如果没有按键被按下,这个部件也会接收鼠标移动事件。 ...
2017-12-02 15:10:00 140
转载 NCL安装
一、下载NCL 1.进入官网(http://www.ncl.ucar.edu/),选择你想安装的版本。 2.点击Download 3.选择 “Download the appropriate NCL binaries for your system or the source c...
2017-09-21 16:59:00 2264
转载 Qt中文乱码
// 1.用记事本打开你的源代码,然后点另存为,utf-8,编码覆盖,这时中文就没问题了但是会乱码。// 2.在字符串前加个宏QStringLiteral把字符串扩起来this->setWindowTitle(QStringLiteral("中文")); ...
2017-09-01 14:22:00 100
转载 Qt QString使用0补位
int msec = 1; int sec = 1; int min = 1; int h = 1; QString tempstr = QString("%1:%2:%3.%4") .arg(h, 2, 1...
2017-08-21 10:51:00 2045
转载 Qt程序打包、发布——使用官方windeployqt
1.Release编译生成exe程序 2.新建一个文件夹,将刚才生成的exe程序复制进去 3.打开Qt命令行 4.切换到exe文件目录 5.执行 windeployqt 7.到这就生成完成了 ...
2017-08-14 22:51:00 121
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人