-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChooseTypeAndName.dfm
72 lines (72 loc) · 1.25 KB
/
ChooseTypeAndName.dfm
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
object TypeAndNameDlg: TTypeAndNameDlg
Left = 227
Top = 108
ActiveControl = TypesComboBox
BorderStyle = bsDialog
Caption = 'Input Cell Type and Name'
ClientHeight = 145
ClientWidth = 384
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 8
Top = 8
Width = 281
Height = 129
Shape = bsFrame
end
object TypeLabel: TLabel
Left = 28
Top = 21
Width = 44
Height = 13
Caption = 'Cell Type'
end
object NameLabel: TLabel
Left = 28
Top = 77
Width = 47
Height = 13
Caption = 'Cell Name'
end
object OKBtn: TButton
Left = 300
Top = 8
Width = 75
Height = 25
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelBtn: TButton
Left = 300
Top = 38
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object TypesComboBox: TComboBox
Left = 44
Top = 40
Width = 229
Height = 21
Style = csDropDownList
TabOrder = 2
end
object Edit1: TEdit
Left = 44
Top = 96
Width = 229
Height = 21
TabOrder = 3
Text = 'NewCell'
end
end