28 lines
522 B
Text
28 lines
522 B
Text
|
# Gambas Form File 3.0
|
||
|
|
||
|
{ Form Form
|
||
|
MoveScaled(0,0,68,11)
|
||
|
Arrangement = Arrange.Vertical
|
||
|
Margin = True
|
||
|
{ lblTitle Label
|
||
|
MoveScaled(1,1,48,3)
|
||
|
Expand = True
|
||
|
Text = ("Starting download...")
|
||
|
}
|
||
|
{ lblStatus Label
|
||
|
MoveScaled(1,4,11,2)
|
||
|
Font = Font["Italic,-2"]
|
||
|
}
|
||
|
{ HBox2 HBox
|
||
|
MoveScaled(1,6,65,4)
|
||
|
{ pgbDownload ProgressBar
|
||
|
MoveScaled(0,0,56,4)
|
||
|
Expand = True
|
||
|
}
|
||
|
{ btnAbort ToolButton
|
||
|
MoveScaled(61,0,4,4)
|
||
|
Picture = Picture["icon:/small/close"]
|
||
|
}
|
||
|
}
|
||
|
}
|