qmlFrontend/qml/qmlFrontend/First.qml
branchqmlfrontend
changeset 10422 4cf23d4c7624
child 10896 5a74923120d5
equal deleted inserted replaced
10420:02c573d19224 10422:4cf23d4c7624
       
     1 import QtQuick 2.0
       
     2 
       
     3 Rectangle {
       
     4     HWButton {
       
     5         id: btnLocalGame
       
     6         x: 8
       
     7         y: 80
       
     8         width: 166
       
     9         height: 166
       
    10 
       
    11         onClicked: pages.currentPage = "LocalGame"
       
    12     }
       
    13 
       
    14     HWButton {
       
    15         id: btnNetwork
       
    16         x: 192
       
    17         y: 80
       
    18         width: 166
       
    19         height: 166
       
    20     }
       
    21 
       
    22     HWButton {
       
    23         id: btnAbout
       
    24         x: 100
       
    25         y: 16
       
    26         width: 200
       
    27         height: 50
       
    28     }
       
    29 }