21e325b27a
* NEW: Put the old examples in '/trunk/app/examples'. git-svn-id: svn://localhost/gambas/trunk@6724 867c0c6c-44f3-4631-809d-bfa615b0a4ec
36 lines
674 B
Text
36 lines
674 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,42,16)
|
|
Resizable = False
|
|
{ MnuGame Menu
|
|
Text = ("Game")
|
|
{ MnuClear Menu
|
|
Text = ("Clear")
|
|
Picture = Picture["icon:/32/clear"]
|
|
}
|
|
{ MnuQuit Menu
|
|
Text = ("Quit")
|
|
Picture = Picture["icon:/32/quit"]
|
|
}
|
|
}
|
|
{ mnuLevel Menu
|
|
Text = ("Level")
|
|
}
|
|
{ MnuHelp Menu
|
|
Text = ("Help")
|
|
{ MnuHelpPlay Menu
|
|
Text = ("How to play?")
|
|
Picture = Picture["icon:/32/help"]
|
|
}
|
|
{ MnuAbout Menu
|
|
Text = ("About")
|
|
Picture = Picture["icon:/32/info"]
|
|
}
|
|
}
|
|
{ btnClear Button
|
|
MoveScaled(15,2,16,6)
|
|
Font = Font["Bold,+4"]
|
|
Text = ("Clear")
|
|
}
|
|
}
|