Advertisement
Guest User

Untitled

a guest
Jan 8th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.33 KB | None | 0 0
  1. import QtQuick 2.0
  2.  
  3. Rectangle {
  4.     visible: true
  5.     width: 800
  6.     height: 600
  7.  
  8.     Image{
  9.         id: image
  10.         source: "file://" + _imagePath
  11.         asynchronous: true
  12.         visible: true
  13.         anchors.fill: parent
  14.     }
  15.  
  16.     Keys.onEscapePressed: {
  17.         console.log("Sidious is my master");
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement