Guest User

Untitled

a guest
Aug 6th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import QtQuick 2.7
  2. import QtQuick.Controls 2.0
  3. import QtQuick.Layouts 1.0
  4.  
  5. ApplicationWindow {
  6. visible: true
  7. width: 350
  8. height: 480
  9. title: qsTr("Hello World")
  10. Grid {
  11. width: parent.width
  12. Button {
  13. text: "test"
  14. }
  15. Button {
  16. text: "test"
  17. }
  18. Button {
  19. text: "test"
  20. }
  21. Button {
  22. text: "test"
  23. }
  24. Button {
  25. text: "test"
  26. }
  27. }
  28. }
Add Comment
Please, Sign In to add comment