上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 128 下一页
摘要: var str = text_name.replace(/\ +/g,""); str = str.replace(/[\r\n]/g,""); console.log(str); 阅读全文
posted @ 2020-09-01 13:53 朱小勇 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: 1、代码 void QJInterface::closeEvent(QCloseEvent *event) { QDialog* log = new QDialog(this); log->setObjectName("log"); log->setStyleSheet("#log{backgrou 阅读全文
posted @ 2020-08-30 00:41 朱小勇 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: 1、官网 https://sourceforge.net/projects/qroundprogressbar/ 2、下载并加入到工程 3、在ui里拖一个widget,提升为QRoundProgressBar 4、直接使用 ui->round_1->setFormat("%v"); ui->roun 阅读全文
posted @ 2020-08-30 00:15 朱小勇 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 1、环境准备 .pro里: QT += charts 头文件: #include <QtCharts> 2、在mainwindow.h里定义饼图变量 QPieSeries *series; 3、mainwindow.cpp series = new QPieSeries(); series->app 阅读全文
posted @ 2020-08-29 21:27 朱小勇 阅读(1442) 评论(0) 推荐(1) 编辑
摘要: 1、效果 2、与swipview一起使用 //index提示器 PageIndicator { id: indicator count: swipeView.count currentIndex: swipeView.currentIndex anchors.bottom: parent.botto 阅读全文
posted @ 2020-08-21 12:50 朱小勇 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1、效果 2、自定义路径qml import QtQuick 2.0 Item { property point startPoint: Qt.point(0, 0) property point endPoint: Qt.point(0, 0) property var lineColor: "# 阅读全文
posted @ 2020-08-21 12:44 朱小勇 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 1、简单的json MouseArea { anchors.fill: parent; onClicked: { var json = '{"result":true, "count":42}'; var obj = JSON.parse(json); console.log(obj.count); 阅读全文
posted @ 2020-08-21 11:33 朱小勇 阅读(2941) 评论(0) 推荐(0) 编辑
摘要: QObject的拷贝构造函数是私有的,当把其子类放入容器时无法完成构造其副本。 如下代码便会报错: Mydata data("item1", "red"); QList<QObject> datalist; datalist.append(data); 解决,以指针形式存储: QList<QObje 阅读全文
posted @ 2020-08-09 00:50 朱小勇 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 一、适用情况 在C++里将数据生成,然后将这个数据设置为qml的上下文属性,在qml里就能使用了 二、传递基础类型 1、main.cpp QQuickWidget *m_widget = new QQuickWidget(this); m_widget->setGeometry(0, 0, this 阅读全文
posted @ 2020-08-08 23:03 朱小勇 阅读(6859) 评论(0) 推荐(0) 编辑
摘要: MouseArea { anchors.fill: parent; hoverEnabled: true; cursorShape: (containsMouse? (pressed? Qt.ClosedHandCursor: Qt.OpenHandCursor): Qt.ArrowCursor); 阅读全文
posted @ 2020-08-07 17:39 朱小勇 阅读(976) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 128 下一页