-
Notifications
You must be signed in to change notification settings - Fork 0
/
myinputbox.lfm
79 lines (79 loc) · 1.77 KB
/
myinputbox.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
object MyInputBox: TMyInputBox
Left = 321
Height = 81
Top = 250
Width = 320
Caption = 'MyInputBox'
ClientHeight = 81
ClientWidth = 320
OnCreate = FormCreate
OnDestroy = FormDestroy
object Panel1: TPanel
AnchorSideTop.Control = EInput
AnchorSideTop.Side = asrBottom
Left = 0
Height = 40
Top = 41
Width = 320
Align = alBottom
BorderSpacing.Top = 8
ClientHeight = 40
ClientWidth = 320
TabOrder = 0
object Button1: TButton
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Panel1
AnchorSideRight.Side = asrBottom
Left = 236
Height = 25
Top = 8
Width = 75
Anchors = [akTop, akRight]
BorderSpacing.Around = 8
Caption = 'rsOK'
ModalResult = 1
TabOrder = 0
end
object Button2: TButton
AnchorSideTop.Control = Panel1
AnchorSideRight.Control = Button1
Left = 153
Height = 25
Top = 9
Width = 75
Anchors = [akTop, akRight]
BorderSpacing.Around = 8
Caption = 'rsFortryd'
ModalResult = 2
TabOrder = 1
end
end
object EInput: TEdit
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 65
Height = 24
Top = 8
Width = 247
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 8
TabOrder = 1
Text = 'EInput'
end
object Label1: TLabel
AnchorSideTop.Control = Owner
AnchorSideBottom.Control = EInput
AnchorSideBottom.Side = asrBottom
Left = 16
Height = 16
Top = 16
Width = 41
Anchors = [akLeft, akBottom]
BorderSpacing.Left = 8
Caption = 'Label1'
end
end