background picture of the home page

Think in Code

openwrt 多播

初始化安装 opkg update # 安装中文 opkg install luci-i18n-base-zh-cn # 安装 macvlan, mwam3 opkg install kmod-macvlan mwan3 luci-app-mwan3 luci-i18n-mwan3-zh-cn 配

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

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

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

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

thumbnail of the cover of the post