-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit1.dfm
More file actions
85 lines (85 loc) · 2 KB
/
Unit1.dfm
File metadata and controls
85 lines (85 loc) · 2 KB
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
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 372
ClientWidth = 712
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Memo1: TMemo
Left = 0
Top = 41
Width = 329
Height = 331
Align = alLeft
Lines.Strings = (
'{'
' "id": "0001",'
' "type": "donut",'
' "name": "Cake",'
' "ppu": 0.55,'
' "batters": {'
' "batter": ['
' { "id": "1001", "type": "Regular" },'
' { "id": "1002", "type": "Chocolate" },'
' { "id": "1003", "type": "Blueberry" },'
' { "id": "1004", "type": "Devil'#39's Food" }'
' ]'
' },'
' "topping":['
' { "id": "5001", "type": "None" },'
' { "id": "5002", "type": "Glazed" },'
' { "id": "5005", "type": "Sugar" },'
' { "id": "5007", "type": "Powdered Sugar" },'
' { "id": "5006", "type": "Chocolate with Sprinkles" },'
' { "id": "5003", "type": "Chocolate" },'
' { "id": "5004", "type": "Maple" }'
' ]'
'}')
ScrollBars = ssBoth
TabOrder = 1
WordWrap = False
end
object TreeView1: TTreeView
Left = 329
Top = 41
Width = 383
Height = 331
Align = alClient
Indent = 19
TabOrder = 2
ExplicitLeft = 384
ExplicitTop = 296
ExplicitWidth = 121
ExplicitHeight = 97
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 712
Height = 41
Align = alTop
BevelOuter = bvNone
Caption = 'Panel1'
TabOrder = 0
ExplicitLeft = 176
ExplicitTop = 112
ExplicitWidth = 185
object Button2: TButton
Left = 9
Top = 10
Width = 75
Height = 25
Caption = 'Parse'
TabOrder = 0
OnClick = Button2Click
end
end
end