1
import QtQuick 2.7
2
3
Page1Form {
4
button1.onClicked: {
5
console.log("Button Pressed. Entered text: " + textField1.text);
6
}
7