上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 128 下一页
摘要: 1、代码 import QtQuick 2.0 import QtQuick.Controls 2.0 Rectangle { id:root; color: "#19192C"; property int rect_width: 80; property int rect_height: 20; 阅读全文
posted @ 2020-08-07 16:42 朱小勇 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 1、全等于 2、不等于 !== 阅读全文
posted @ 2020-08-07 14:56 朱小勇 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 1、var uiRecord: [];//QML语法 2、删除并返回最后一个元素 uiRecord.pop(); 3、清空所有 uiRecord.splice(0,uiRecord.length); uiRecord = []; uiRecord.length = 0; 4、删除第一个元素并返回 u 阅读全文
posted @ 2020-08-07 14:47 朱小勇 阅读(155) 评论(0) 推荐(0) 编辑
摘要: SwipeView { id: swipeView z:0; width: parent.width-listView.width; height: parent.height; anchors.left: listView.right; interactive: false;//禁止手拖动 cur 阅读全文
posted @ 2020-08-07 11:40 朱小勇 阅读(1788) 评论(0) 推荐(0) 编辑
摘要: RadioButton { id:root2 checked: false property color checkedColor: "#E5F012" property int node_id: 2; onClicked: { if(root2.checked) { swipeView.curre 阅读全文
posted @ 2020-08-07 10:52 朱小勇 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 1、例子1 import QtQuick 2.7 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.0 import QtQuick.Window 2.2 Window { visible: true width: 300 height: 45 阅读全文
posted @ 2020-08-07 09:53 朱小勇 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: import QtQuick 2.0 import QtQuick.Controls 2.0 Rectangle { id:root; color: "#19192C"; property int rect_width: 50; property int rect_height: 20; prope 阅读全文
posted @ 2020-08-06 11:49 朱小勇 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 一、静态生成两个界面 import QtQuick.Controls 2.2 import QtQml 2.2 import QtQuick 2.9 ApplicationWindow { title: qsTr("Hello World") width: 640 height: 480 visib 阅读全文
posted @ 2020-08-05 16:59 朱小勇 阅读(2843) 评论(0) 推荐(0) 编辑
摘要: 一、例子 1、例子1:基本使用 import QtQuick 2.0 import QtCharts 2.2 Rectangle { id: root property string info: "info" color: "#000C3C" width: 600; height: 400; fun 阅读全文
posted @ 2020-07-30 11:37 朱小勇 阅读(5534) 评论(2) 推荐(0) 编辑
摘要: 一、环境准备 1、安装Qt的时候需要勾上chart 2、.pro QT += charts 3、添加头文件 #include <QtChar 二、在ui里拖一个widget过去 三、代码 1、mainwindow.h声明一个饼图 QPieSeries *series;//饼图相关 2、mainwin 阅读全文
posted @ 2020-07-29 17:07 朱小勇 阅读(581) 评论(0) 推荐(0) 编辑
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 128 下一页