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.
25 lines
348 B
25 lines
348 B
import QtQuick 2.13
|
|
import QtQuick.Window 2.13
|
|
import QtQuick.Window 2.11
|
|
|
|
Window {
|
|
id: window
|
|
width: 1600
|
|
height: 800
|
|
visible: true
|
|
title: "SepantaUiKit"
|
|
color: "black"
|
|
|
|
Page1 {
|
|
|
|
}
|
|
|
|
|
|
Shortcut {
|
|
sequence: "F5"
|
|
onActivated: {
|
|
window.close()
|
|
app.loadQml()
|
|
}
|
|
}
|
|
}
|
|
|