-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitFormMemoOkCancel.frm
99 lines (99 loc) · 2.01 KB
/
UnitFormMemoOkCancel.frm
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
89
90
91
92
93
94
95
96
97
98
99
object _FormMemoOKCancel: T_FormMemoOKCancel
Left = 340
Height = 277
Top = 209
Width = 869
BorderStyle = bsDialog
Caption = '_FormMemoOKCancel'
ClientHeight = 277
ClientWidth = 869
KeyPreview = True
OnKeyDown = FormKeyDown
LCLVersion = '7.4'
object GroupBox1: TGroupBox
Left = 0
Height = 117
Top = 0
Width = 869
Align = alTop
Caption = 'States in the chain'
ClientHeight = 99
ClientWidth = 865
TabOrder = 0
object MemoInChain: TMemo
Left = 0
Height = 99
Top = 0
Width = 865
Align = alClient
Color = clSilver
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
ReadOnly = True
TabOrder = 0
end
end
object GroupBox2: TGroupBox
Left = 0
Height = 160
Top = 117
Width = 869
Align = alClient
Caption = 'States to Add'
ClientHeight = 142
ClientWidth = 865
TabOrder = 1
object Memo: TMemo
Left = 0
Height = 109
Top = 0
Width = 865
Align = alClient
Lines.Strings = (
''
)
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object PanelControls: TPanel
Left = 0
Height = 33
Top = 81
Width = 865
Align = alBottom
BevelInner = bvRaised
BevelOuter = bvLowered
ClientHeight = 33
ClientWidth = 865
TabOrder = 1
object BitBtnOK: TButton
Left = 12
Height = 25
Top = 0
Width = 75
Caption = '&Add'
Default = True
DoubleBuffered = True
ModalResult = 1
ParentDoubleBuffered = False
TabOrder = 0
end
object BitBtnCancel: TButton
Left = 180
Height = 25
Top = 0
Width = 75
Cancel = True
Caption = 'Cancel'
DoubleBuffered = True
ModalResult = 2
ParentDoubleBuffered = False
TabOrder = 1
end
end
end
end