onclicked button open "new" form
-
hello, it's just the way to do what the topic ask ;-)
import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.1 Item { width: parent.width height: parent.height Column { spacing: 5 Button { anchors.margins: 20 text: "24" onClicked: stackView.push (Qt.resolvedUrl("SliderPage.qml")) } }