import QtQuick 2.0
Item { //base component
id: baseBar
width: but1.height // width as TabBar height before rotation
height: parent.height
TabBar {
id: modeBar1
width: parent.height
height: but1.height
transform: [
Rotation { origin.x: 0; origin.y: 0; angle: -90} // rotate around the upper left corner counterclockwise
,Translate { y: baseBar.height; x: 0 } // move to the bottom of the base
]
TabButton {
id: but1
text: qsTr("Button1")
}
TabButton {
text: qsTr("Button2")
} //TabBar
} //Item
Более подробно тут.
Комментариев нет:
Отправить комментарий