目录
----- Translate -----
https://doc.qt.io/qt-6.9/zh/qml-qtquick-translate.html
Rotation方法
不会改变 x、y 属性
import QtQuick
Item {
transform: Translate {
x(y): real
//沿 X(Y) 轴的平移量
}
}
目录