-
Notifications
You must be signed in to change notification settings - Fork 488
/
Copy pathPage3.qml
44 lines (39 loc) · 848 Bytes
/
Page3.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*!
*@file Page3.qml
*@brief Page3
*@version 1.0
*@section LICENSE Copyright (C) 2003-2103 CamelSoft Corporation
*@author zhengtianzuo
*/
import QtQuick 2.8
import QtQuick.Controls 2.1
Page {
id: frmWindow
title: qsTr("帐号")
visible: true
property StackView stack: null
Button {
height: 32
width: 120
text: "<-"
anchors.left: parent.left
anchors.top: parent.top
onClicked: stack.pop()
}
Label{
id: label
text: qsTr("帐号")
height: 80
width: 240
anchors.centerIn: parent
font.pixelSize: 20
}
Label{
anchors.top: label.bottom
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("帐号信息")
height: 80
width: 240
font.pixelSize: 20
}
}