mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
7 lines
138 B
QML
7 lines
138 B
QML
import QtQuick 2.7
|
|
|
|
Page1Form {
|
|
button1.onClicked: {
|
|
console.log("Button Pressed. Entered text: " + textField1.text);
|
|
}
|
|
}
|