上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 99 下一页
摘要: c# list链表去除重复数据 采用哈希代码类 List<string> bb_list = new List<string> { "aa","aa","b", "b", "b" ,"c","c"}; private void RemoveRepeatItem() { HashSet<string> 阅读全文
posted @ 2022-07-27 10:07 txwtech 阅读(252) 评论(1) 推荐(0) 编辑
摘要: C#dateTimePicker如何显示日期时间?指定日期与时间 private void Form1_Load(object sender, EventArgs e) //by txwtech { dateTimePicker_start_date.Format = DateTimePickerF 阅读全文
posted @ 2022-07-27 09:05 txwtech 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: #include "mainwindow.h" #include "ui_mainwindow.h" #include <QMessageBox> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::M 阅读全文
posted @ 2022-07-25 22:47 txwtech 阅读(289) 评论(0) 推荐(0) 编辑
摘要: QT操作文件写入文件 #include "File_Operation.h" #include "qfile.h" #include <QDebug> #include <QDateTime> File_Operation::File_Operation() { } File_Operation:: 阅读全文
posted @ 2022-07-25 21:14 txwtech 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: *新建项目:ctrl + n *运行项目:ctrl + r *构建项目:ctrl + b *改变字体大小:ctrl + 滚轮 *代码对齐大括号对齐:ctrl + a,ctrl + i *跳转到上一行:ctrl + shift + enter *跳转到下一行:ctrl + enter *从头文件跳转到 阅读全文
posted @ 2022-07-25 08:12 txwtech 阅读(640) 评论(0) 推荐(0) 编辑
摘要: png2ico pngjpg转ico工具绿色免安装 https://www.cr173.com/soft/35925.html https://www.cr173.com/soft/35925.html https://www.cr173.com/soft/35925.html 阅读全文
posted @ 2022-07-24 22:02 txwtech 阅读(34) 评论(0) 推荐(0) 编辑
摘要: QT获取本机IP方法 QString Server::GetLocalIP() { QList<QHostAddress> list=QNetworkInterface::allAddresses(); foreach(QHostAddress address,list) { if(address. 阅读全文
posted @ 2022-07-23 16:05 txwtech 阅读(1178) 评论(0) 推荐(0) 编辑
摘要: QT信号与槽手动与自动关联讲解 阅读全文
posted @ 2022-07-23 15:29 txwtech 阅读(83) 评论(0) 推荐(0) 编辑
摘要: win10笔记本安装 SolidWorks2016软件,SW2010-2016.Activator.GUI.SSQ激活闪退解决办法 https://www.jianshu.com/p/8e10c38b6302 阅读全文
posted @ 2022-07-17 20:28 txwtech 阅读(4934) 评论(0) 推荐(0) 编辑
摘要: c#16进制字符串转整型 string cmd = "01 03 00 01 00 01"; string recvStr = SendData(cmd); if (recvStr.Contains("error") == true) { return "error"; } // string re 阅读全文
posted @ 2022-07-13 14:40 txwtech 阅读(341) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 99 下一页