mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-29 19:13:59 +02:00
8 lines
138 B
QML
8 lines
138 B
QML
|
import QtQuick 2.7
|
||
|
|
||
|
Page1Form {
|
||
|
button1.onClicked: {
|
||
|
console.log("Button Pressed. Entered text: " + textField1.text);
|
||
|
}
|
||
|
}
|