Advertisement
Guest User

Untitled

a guest
Jul 14th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 2.0
  2. import QtQuick.Controls 1.0
  3. import QtQuick.Layouts 1.0
  4.  
  5.  
  6. ApplicationWindow {
  7.     TableView {
  8.         TableViewColumn {
  9.             title: "id"
  10.             width: 100
  11.         }
  12.         TableViewColumn {
  13.             title: "name"
  14.             width: 100
  15.         }
  16.     }
  17.     width: 500
  18.     height: 200
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement