-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.dfm
124 lines (124 loc) · 2.39 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
object Form1: TForm1
Left = 222
Top = 130
Width = 616
Height = 385
Caption = 'Tic Tac Toe v1.0'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object pole1: TImage
Left = 24
Top = 24
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole1Click
end
object pole2: TImage
Left = 120
Top = 24
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole2Click
end
object pole3: TImage
Left = 216
Top = 24
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole3Click
end
object pole4: TImage
Left = 24
Top = 120
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole4Click
end
object pole5: TImage
Left = 120
Top = 120
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole5Click
end
object pole6: TImage
Left = 216
Top = 120
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole6Click
end
object pole7: TImage
Left = 24
Top = 216
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole7Click
end
object pole8: TImage
Left = 120
Top = 216
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole8Click
end
object pole9: TImage
Left = 216
Top = 216
Width = 100
Height = 100
Cursor = crHandPoint
OnClick = pole9Click
end
object Label1: TLabel
Left = 336
Top = 56
Width = 182
Height = 37
Caption = 'Tura gracza:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -32
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object tura: TImage
Left = 528
Top = 64
Width = 30
Height = 30
end
object Button1: TButton
Left = 344
Top = 160
Width = 177
Height = 73
Cursor = crHandPoint
Caption = 'Od nowa'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -32
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
OnClick = FormCreate
end
end