Pastybinneriest

start.qml

Dec 16th, 2021 (edited)
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.40 KB | None | 0 0
  1. import QtQuick 2.15
  2. import QtQuick.Controls 2.15
  3.  
  4. ApplicationWindow {
  5.     visible: true
  6.     width: 1920
  7.     height: 1080
  8.     title: "HelloApp"
  9.     flags: Qt.FramelessWindowHint | Qt.Window | Qt.WindowStaysOnTopHint
  10.     onClosing: close.accepted = false
  11.     property string currTime: "0"
  12.     property QtObject backend
  13.     Rectangle {
  14.         anchors.fill: parent
  15.                 color: "Green"
  16.       }
  17. }
Add Comment
Please, Sign In to add comment