Advertisement
framp

QML Example

Aug 6th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 2.1
  2. import QtQuick.Controls 1.0
  3. import QtQuick.Window 2.0
  4.  
  5. ApplicationWindow {
  6.     title: "This is QML"
  7.     width: 640
  8.     height: 480
  9.  
  10.     Button {
  11.         text: "Yep"
  12.         anchors.horizontalCenter: parent.horizontalCenter
  13.         anchors.verticalCenter: parent.verticalCenter
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement