background picture of the home page

Think in Code

查询Windows下的dll exe所依赖的文件

查询Windows下的dll/exe所依赖的文件 dumpbin -dependents your-file 如果有Image has the following delay load dependencies,列出的为运行时动态加载的dll。 如果有Image has the following

thumbnail of the cover of the post

程序设置开机自启

程序设置开机自启 Windows // "Key" 是自启名称 // "Value" 程序路径 // 添加注册表 reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v "Key" /d "Val

thumbnail of the cover of the post

防止子窗口使用父窗口样式

方法 1. 在样式中,指定子对象的样式 #ChildObjectName { color : #666666; width : 10 px; } 方法 2. 在所有子窗口上嵌套一层窗口 SettingDialog中原有的样式都放在

thumbnail of the cover of the post

Qt VS 乱码

解决Qt在VS中界面字符串乱码 #if defined(_MSC_VER) && (_MSC_VER >= 1500) #pragma execution_character_set("utf-8") #endif

thumbnail of the cover of the post

QML调用C++代码

QML调用C++代码 C++调用QML参考链接 1. 首先编写好C++类 #include <QObject> class Cpp : public QObject { Q_OBJECT public: Cpp(); // Q_PROPERTY 注册类型为QString 的ss属性,可以

thumbnail of the cover of the post