gambas-source-code/app/examples/Control/LCDLabel/.src/FMain.form

34 lines
639 B
Text
Raw Normal View History

# Gambas Form File 3.0
{ Form Form
2019-05-20 08:26:41 +02:00
MoveScaled(0,0,54,26)
Icon = Picture["lcdlabel.png"]
Arrangement = Arrange.Vertical
Spacing = True
Margin = True
{ Panel1 HBox
2019-05-20 08:26:41 +02:00
MoveScaled(2,1,50,4)
Spacing = True
2019-05-21 08:34:51 +02:00
{ timTime TimeBoxDemo
2019-05-16 06:35:16 +02:00
MoveScaled(0,0,11,4)
}
{ btnStart Button
2019-05-20 08:26:41 +02:00
MoveScaled(17,0,33,4)
Text = ("Start / Stop")
}
}
{ lblAlarm LCDLabel
2019-05-20 08:26:41 +02:00
MoveScaled(9,8,34,14)
Background = &H000000&
Foreground = &H00FF00&
Expand = True
Text = ("00:00:00")
Alignment = Align.Center
HighlightColor = &HFFFF00&
}
2019-05-16 06:35:16 +02:00
{ timClock #Timer
#MoveScaled(25,9)
Delay = 50
}
}