摘要: http://timgolden.me.uk/pywin32-docs/contents.html https://docs.python.org/3/library/ctypes.html#ctypes.WinDLL 安装 pywin32 pip install pywin32 -i https: 阅读全文
posted @ 2020-09-03 20:15 Ajanuw 阅读(634) 评论(0) 推荐(0) 编辑
摘要: #include <QtCore> #include <QTimer> QTimer *timer; timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(exit_timeout())); // 1s后执行一次 阅读全文
posted @ 2020-09-03 17:16 Ajanuw 阅读(414) 评论(0) 推荐(0) 编辑
摘要: qdatetime doc 获取当前时间 QDateTime t1 = QDateTime::currentDateTime(); qDebug() << t1.toString("yyyy-MM-dd hh:mm:ss"); string to QDateTime QDateTime t1 = Q 阅读全文
posted @ 2020-09-03 16:13 Ajanuw 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <Windows.h> #pragma comment(lib, "user32.lib") #pragma comment(lib, "advapi32.lib") int main() { // https://docs.microsof 阅读全文
posted @ 2020-09-03 15:11 Ajanuw 阅读(457) 评论(0) 推荐(0) 编辑