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.

26 lines
348 B

10 months ago
import QtQuick 2.13
import QtQuick.Window 2.13
10 months ago
import QtQuick.Window 2.11
10 months ago
Window {
10 months ago
id: window
width: 1600
height: 800
10 months ago
visible: true
title: "SepantaUiKit"
color: "black"
10 months ago
10 months ago
Page1 {
}
10 months ago
Shortcut {
sequence: "F5"
onActivated: {
window.close()
app.loadQml()
}
}
10 months ago
}