上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: Qt5.6.3 是最后支持xp系统的长期支持版本。 阅读全文
posted @ 2025-07-11 16:34 liliyou 阅读(37) 评论(0) 推荐(0)
摘要: Thread thread = new Thread(new ThreadStart(() => { Console.WriteLine("可用串口列表:"); string[] ports = SerialPort.GetPortNames(); foreach (string port in p 阅读全文
posted @ 2025-07-11 08:57 liliyou 阅读(138) 评论(0) 推荐(0)
摘要: sqlite3 wms.sqlite < sql.sql 阅读全文
posted @ 2025-07-08 08:28 liliyou 阅读(36) 评论(0) 推荐(0)
摘要: 删除文件 del 1.txt 删除某个后缀的所有文件 有时候需要批量删除一些文件名比较有规律的文件,可以用通配符*代替不规则的字符,保留规则的字符;例如 ,想删除当前目录下所有后缀为.txt .png .jpg的文件,可以使用: del *.txt *.png *.jpg 删除文件夹 >rmdir 阅读全文
posted @ 2025-06-06 14:44 liliyou 阅读(30) 评论(0) 推荐(0)
摘要: // 假设ui是您的用户界面对象 ui->textBrowser->document()->setMaximumBlockCount(10); ui->textBrowser->append("[接收] " + message.trimmed()); 清空文本 ui->textBrowser->cl 阅读全文
posted @ 2025-06-05 17:20 liliyou 阅读(47) 评论(0) 推荐(0)
摘要: // 设置lcdNumber的值 ui->lcdNumber->display(111.254); // 获取lcdNumber的值 qDebug()<< QStringLiteral("显示的数字是:") << ui->lcdNumber->value(); 阅读全文
posted @ 2025-06-05 17:00 liliyou 阅读(37) 评论(0) 推荐(0)
摘要: QString filename = QFileDialog::getOpenFileName(this,"打开文件","E:/","(*.rar)"); ui->lineEdit->setText(filename); 阅读全文
posted @ 2025-06-05 09:25 liliyou 阅读(12) 评论(0) 推荐(0)
摘要: SerialPortHandler.h #ifndef SERIALPORTHANDLER_H #define SERIALPORTHANDLER_H #include <QObject> #include <QSerialPort> #include <QSerialPortInfo> class 阅读全文
posted @ 2025-06-04 16:53 liliyou 阅读(54) 评论(0) 推荐(0)
摘要: mainwindow.ui <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>MainWindow</class> <widget class="QMainWindow" name="MainWindow"> <prop 阅读全文
posted @ 2025-06-04 14:15 liliyou 阅读(27) 评论(0) 推荐(0)
摘要: protected $middleware = [ Auth::class => ['except' => ['method1', 'method2']] ]; 阅读全文
posted @ 2025-06-03 16:55 liliyou 阅读(15) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 19 下一页