赞
踩
学习客户端界面开发,界面布局是非常重要的技巧,不会布局,就很难做出好看的界面,很多UI效果也无法实现,QML的布局方法比较多,如下图:
本篇博客介绍qml锚点布局anchors,锚。
例如界面上四个按钮,可以用绝对坐标 (x, y) 设置他们的位置,
代码如下:
- import QtQuick 2.12
- import QtQuick.Window 2.12
- import QtQuick.Controls 2.5
-
- Window {
- visible: true
- width: 320
- height: 480
- title: qsTr("Hello World")
- color: "gray"
-
- Button
- {
- id:btn1
- x:100
- y:100
- text:"按钮1"
- width: 100
- height: 30
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。