09 2019 档案
摘要:QML语法初见 锚定 left 左 right 右 top 顶部 bottom 底部 centerIn 中央 fill 填充满 verticalCenter 垂直中央 horizontalCenter 水平中央 anchors.left: parent //放在父对象左边 rotation 旋转(瞬
阅读全文
摘要:延迟给自己发信号执行操作 //延迟4500毫秒, 改变Status的值. QTimer::singleShot(4500, this, [&](){ this->Status = 0; }); 条件编译 #define 定义宏 #undef 取消宏 #if 编译预处理中的条件命令(可用来注释代码(#
阅读全文