forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
passwcon.lfm
61 lines (61 loc) · 1.42 KB
/
passwcon.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
object PasswordConnect: TPasswordConnect
Left = 421
Height = 99
Top = 451
Width = 456
BorderIcons = []
Caption = 'PasswordConnect'
ClientHeight = 99
ClientWidth = 456
Constraints.MaxHeight = 99
Constraints.MaxWidth = 456
Constraints.MinHeight = 99
Constraints.MinWidth = 456
OnCreate = FormCreate
Position = poMainFormCenter
LCLVersion = '1.6.4.0'
object lMsg: TLabel
Left = 8
Height = 23
Top = 8
Width = 440
AutoSize = False
Caption = 'lMsg'
ParentColor = False
end
object passw: TEdit
Left = 8
Height = 23
Top = 32
Width = 440
AutoSize = False
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 0
Text = '12345'
end
object Buttons: TButtonPanel
Left = 8
Height = 26
Top = 65
Width = 440
BorderSpacing.Left = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.Around = 0
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
OKButton.OnClick = OKButtonClick
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
CancelButton.OnClick = CancelButtonClick
TabOrder = 1
Spacing = 8
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
end