-
Notifications
You must be signed in to change notification settings - Fork 4
/
setcustomtilesize.lfm
60 lines (60 loc) · 1.05 KB
/
setcustomtilesize.lfm
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
object SetCustomTileSizeForm: TSetCustomTileSizeForm
Left = 755
Height = 180
Top = 461
Width = 309
BorderStyle = bsDialog
Caption = 'Set Custom Tile Size'
ClientHeight = 180
ClientWidth = 309
LCLVersion = '3.4.0.0'
object Button1: TButton
Left = 216
Height = 25
Top = 136
Width = 75
Caption = 'OK'
TabOrder = 0
OnClick = Button1Click
end
object SpinEditTileWidth: TSpinEditEx
Left = 96
Height = 23
Top = 39
Width = 103
MaxLength = 0
NumbersOnly = True
TabOrder = 1
MaxValue = 256
MinValue = 8
NullValue = 0
Value = 48
end
object SpinEditTileHeight: TSpinEditEx
Left = 96
Height = 23
Top = 72
Width = 103
MaxLength = 0
NumbersOnly = True
TabOrder = 2
MaxValue = 256
MinValue = 8
NullValue = 0
Value = 48
end
object Label1: TLabel
Left = 52
Height = 15
Top = 39
Width = 32
Caption = 'Width'
end
object Label2: TLabel
Left = 48
Height = 15
Top = 72
Width = 36
Caption = 'Height'
end
end