You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
394 B
24 lines
394 B
import QtQuick 2.12
|
|
import QtQuick.Window 2.12
|
|
import QtQuick.Layouts 1.12
|
|
|
|
//Window is accessible from everwhere, so we can use 'window' everywhere
|
|
Window {
|
|
id: window
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
title: qsTr("CPP Backend")
|
|
|
|
//Signal
|
|
signal clicked1()
|
|
|
|
onClicked1: {
|
|
console.log("Reciever","onClicked1","Do something")
|
|
}
|
|
|
|
Home{
|
|
|
|
}
|
|
}
|