source: tags/1.3.0/Forms/UFormMain.lfm

Last change on this file was 72, checked in by chronos, 4 years ago
File size: 1.3 KB
Line 
1object FormMain: TFormMain
2 Left = 684
3 Height = 521
4 Top = 307
5 Width = 580
6 Caption = '2048'
7 DesignTimePPI = 144
8 Menu = MainMenu1
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnKeyUp = FormKeyUp
13 OnMouseDown = FormMouseDown
14 OnMouseMove = FormMouseMove
15 OnMouseUp = FormMouseUp
16 OnPaint = FormPaint
17 OnShow = FormShow
18 LCLVersion = '2.0.10.0'
19 object MainMenu1: TMainMenu
20 Left = 325
21 Top = 152
22 object MenuItemGame: TMenuItem
23 Caption = 'Game'
24 object MenuItemNew: TMenuItem
25 Action = Core.ANew
26 end
27 object MenuItem2: TMenuItem
28 Action = Core.AUndo
29 end
30 object MenuItem1: TMenuItem
31 Action = Core.ASettings
32 end
33 object MenuItemExit: TMenuItem
34 Action = Core.AExit
35 end
36 end
37 object MenuItemTools: TMenuItem
38 Caption = 'Tools'
39 object MenuItem4: TMenuItem
40 Action = Core.AComputer
41 end
42 object MenuItemMovesHistory: TMenuItem
43 Action = Core.AHistory
44 end
45 end
46 object MenuItemHelp: TMenuItem
47 Caption = 'Help'
48 object MenuItem3: TMenuItem
49 Action = Core.AHelp
50 end
51 object MenuItemAbout: TMenuItem
52 Action = Core.AAbout
53 end
54 end
55 end
56 object TimerDraw: TTimer
57 Interval = 10
58 OnTimer = TimerDrawTimer
59 Left = 144
60 Top = 152
61 end
62end
Note: See TracBrowser for help on using the repository browser.