Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.47 KB | None | 0 0
  1. import QtQuick 2.10
  2. import QtQuick.Controls 2.3
  3.  
  4. ApplicationWindow {
  5.    visible: true
  6.    width: 500
  7.    height: 500
  8.    title: qsTr("PTable")
  9.  
  10.    Item {
  11.        anchors.fill: parent
  12.        Row {
  13.            spacing: 10
  14.            Button {
  15.                id: buttonNobleGasses
  16.                text: qsTr("NobleGasses")
  17.            }
  18.  
  19.            Button {
  20.                id: buttonOtherNonMetals
  21.                text: qsTr("Other nonmetals")
  22.            }
  23.        }
  24.    }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement