gambas-source-code/app/examples/Misc/Console/.src/FConsole.form
Benoît Minisini 21e325b27a [EXAMPLES]
* NEW: Put the old examples in '/trunk/app/examples'.


git-svn-id: svn://localhost/gambas/trunk@6724 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-11 23:49:07 +00:00

37 lines
756 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(38.4286,16.1429,99,50)
Text = ("Console")
Icon = Picture["terminal.png"]
Arrangement = Arrange.Vertical
{ HBox1 HBox
MoveScaled(1,1,85,4)
{ txtCommand TextBox
MoveScaled(0,0,23,4)
Font = Font["Monospace,10"]
Expand = True
}
{ btnCtrlC ToolButton
MoveScaled(31,0,4,4)
Font = Font["Bold"]
Text = ("^C")
}
{ btnCtrlD ToolButton
MoveScaled(36,0,4,4)
Font = Font["Bold"]
Text = ("^D")
}
{ btnCtrlZ ToolButton
MoveScaled(41,0,4,4)
Font = Font["Bold"]
Text = ("^Z")
}
}
{ txtConsole TextArea
MoveScaled(1,7,47,37)
Font = Font["Monospace,10"]
Expand = True
ReadOnly = True
}
}