WOW, the MFC Hell!! :D:D
Anyway, the simplest way to gat what you want is to use a TabView.
For example
Column {
id: myColumn
spacing: 6
anchors.centerIn: parent
Label {
id: myLabel
y: 47
text: "My Label"
anchors.left: parent.left
}
TabView {
id: tabView
Tab {
id: tab1
title: "Tab1"
}
Tab {
id: tab2
title: "Tab2"
}
}
Hi,
yes its a simple way to do. Thanks for your help.
↧