forked from pyscripter/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathUnit1.dfm
101 lines (101 loc) · 2.12 KB
/
Unit1.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
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
100
101
object Form1: TForm1
Left = 204
Top = 124
Width = 544
Height = 375
VertScrollBar.Range = 170
ActiveControl = Button1
Caption = 'Form1'
Color = clWindow
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 11
Font.Name = 'MS Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
OldCreateOrder = True
PixelsPerInch = 96
TextHeight = 13
object Splitter1: TSplitter
Left = 0
Top = 129
Width = 528
Height = 3
Cursor = crVSplit
Align = alTop
ExplicitWidth = 536
end
object Memo1: TMemo
Left = 0
Top = 132
Width = 528
Height = 163
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Pitch = fpVariable
Font.Style = []
Lines.Strings = (
'import sys'
'print (sys.version_info)'
'import demodll'
'print (dir(demodll))'
'print (demodll.add( 2, 2 ))')
ParentFont = False
TabOrder = 1
end
object Panel1: TPanel
Left = 0
Top = 295
Width = 528
Height = 41
Align = alBottom
BevelOuter = bvNone
ParentBackground = False
TabOrder = 0
object Button1: TButton
Left = 8
Top = 8
Width = 75
Height = 25
Caption = 'Execute'
TabOrder = 0
OnClick = Button1Click
end
end
object Memo2: TMemo
Left = 0
Top = 0
Width = 528
Height = 129
Align = alTop
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Pitch = fpVariable
Font.Style = []
Lines.Strings = (
'')
ParentFont = False
TabOrder = 2
end
object PythonEngine1: TPythonEngine
DllName = 'python37.dll'
APIVersion = 1013
RegVersion = '3.7'
UseLastKnownVersion = False
IO = PythonGUIInputOutput1
Left = 16
Top = 16
end
object PythonGUIInputOutput1: TPythonGUIInputOutput
UnicodeIO = True
RawOutput = False
Output = Memo2
Left = 56
Top = 16
end
end