Advertisement
Guest User

Untitled

a guest
Nov 5th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.36 KB | None | 0 0
  1. Window {
  2.     id: window
  3.     width: 640
  4.     height: 480
  5.     visible: true
  6.     title: qsTr("Some weird useless  window")
  7.  
  8.     Rectangle {
  9.         id: rectangle
  10.         x: window.width / 2 - width / 2
  11.         y: window.height / 2 - height / 2
  12.         width: window.width / 4
  13.         height: window.height / 4
  14.         color: "#000000"
  15.         scale: 2
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement