-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuprogress.lfm
88 lines (88 loc) · 1.93 KB
/
uprogress.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
object frmProgress: TfrmProgress
Left = 1452
Height = 207
Hint = 'Close this window if you wish to abort.'
Top = 534
Width = 509
Caption = 'YAFFI - Progress Window'
ClientHeight = 207
ClientWidth = 509
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
Position = poDesktopCenter
ShowHint = True
LCLVersion = '1.6.4.0'
object GroupBox1: TGroupBox
Left = 8
Height = 177
Top = 16
Width = 472
Caption = 'Status:'
ClientHeight = 157
ClientWidth = 468
TabOrder = 0
object lblStatus: TLabel
Left = 8
Height = 15
Top = 16
Width = 9
Caption = '...'
ParentColor = False
end
object lblResult: TLabel
Left = 8
Height = 15
Top = 128
Width = 9
Caption = '...'
ParentColor = False
end
object lblTotalBytesRead: TLabel
Left = 8
Height = 15
Top = 48
Width = 9
BorderSpacing.Right = 5
Caption = '...'
ParentColor = False
end
object lblTotalBytesSource: TLabel
AnchorSideLeft.Control = lblTotalBytesRead
AnchorSideLeft.Side = asrBottom
Left = 22
Height = 15
Top = 48
Width = 9
Caption = '...'
ParentColor = False
end
object ProgressBar1: TProgressBar
Left = 8
Height = 20
Top = 83
Width = 448
BorderWidth = 1
TabOrder = 0
BarShowText = True
end
object lblPercent: TLabel
AnchorSideLeft.Control = lblTotalBytesSource
AnchorSideLeft.Side = asrBottom
Left = 31
Height = 15
Top = 48
Width = 9
Caption = '...'
ParentColor = False
end
object btnCloseProgressWindow: TButton
Left = 383
Height = 25
Top = 120
Width = 75
Caption = 'Close'
OnClick = btnCloseProgressWindowClick
TabOrder = 1
end
end
end