在初学Qt的过程中,时不时地要通过F2快捷键来查看QT类的定义,发现类定义中有许多Q_PROPERTY的东西,比如最常用的QWidget的类定义: Qt中的Q_PROPERTY宏在Qt中是很常用的,那么它有什么作用呢? Qt提供了一个绝妙的属性系统,Q_PROPERTY()是一个宏,用来在一个类中声 ...
分类:
其他好文 时间:
2019-06-17 11:01:05
阅读次数:
203
一、QtQuick多页面切换方法(1)“隐藏法”前一个视图visible设为false或者透明度opacity设为0,相当于“隐藏”了,实际还存在;要显示的视图visible设为true或者透明度opacity设为1,显示出来;(2)“动态”var component = Qt.createComp ...
分类:
其他好文 时间:
2019-06-17 10:37:38
阅读次数:
211
import QtQuick 2.4 Item { property var targetItem: parent property bool fixedAspectRatio: true // Else zoom from width and height property bool accord... ...
分类:
其他好文 时间:
2018-12-24 16:16:38
阅读次数:
208
原文转自 https://www.cnblogs.com/aoldman/p/3966025.html 作为一个转行QT开发的新手,面对基于QML的开发时候 看到很多的项目类型感到很困惑,不知道应该怎么选择。如图: 经过研究发现QT widgets Application、QtQuick Appli ...
分类:
其他好文 时间:
2018-09-04 13:34:14
阅读次数:
211
创意来源 这个题目是一天刷知乎看到的,,作者的仓库是 img2html ,功能是将图片转换成静态html,其中基本元素为 爱爱爱 [1]: "img2html" qml的实现方案 import QtQuick 2.9 import QtQuick.Window 2.2 Window { visibl ...
分类:
其他好文 时间:
2018-08-12 15:41:25
阅读次数:
178
ApplicationWindow需要导入QtQuick.Controls Window需要导入QtQuick.Window 。 默认不可见,需要设置visible:true才可见。 主要区别就是ApplicationWindow提供了简单的方式创建程序窗口,因为其有属性menuBar、toolBa ...
分类:
移动开发 时间:
2018-08-07 17:27:42
阅读次数:
228
import QtQuick 2.0 Rectangle { id: btn; width: 50; height: 20; radius: 2; border.color: "#A3A3A3"; border.width: 1; property alias text:btnTxt.tex... ...
分类:
其他好文 时间:
2018-08-04 18:55:00
阅读次数:
317
import QtQuick 2.9 import QtQuick.Window 2.2 import QtQuick.Controls 2.2 Window { visible: true width: 640 height: 700 title: qsTr("Hello World") Rect... ...
分类:
其他好文 时间:
2018-07-12 19:58:24
阅读次数:
147
05.04.2018 Nathan Collins 8 comments FacebookTwitterGoogle+LinkedInEmail 05.04.2018 Nathan Collins 8 comments FacebookTwitterGoogle+LinkedInEmail 05.0 ...
分类:
其他好文 时间:
2018-05-22 22:13:49
阅读次数:
217