source: branches/topdown/FormMenu.lfm

Last change on this file was 37, checked in by chronos, 11 months ago
  • Modified: Simplified unit names.
File size: 1.2 KB
Line 
1object FormMenu: TFormMenu
2 Left = 443
3 Height = 478
4 Top = 262
5 Width = 314
6 Caption = 'Menu'
7 ClientHeight = 478
8 ClientWidth = 314
9 DesignTimePPI = 144
10 FormStyle = fsStayOnTop
11 OnDeactivate = FormDeactivate
12 OnShow = FormShow
13 LCLVersion = '2.2.6.0'
14 object ListBoxApps: TListBox
15 Left = 12
16 Height = 415
17 Top = 8
18 Width = 294
19 Anchors = [akTop, akLeft, akRight, akBottom]
20 Items.Strings = (
21 'Calculator'
22 'File manager'
23 )
24 ItemHeight = 32
25 OnClick = ListBoxAppsClick
26 TabOrder = 0
27 end
28 object ToolBar1: TToolBar
29 Left = 192
30 Height = 33
31 Top = 437
32 Width = 114
33 Align = alCustom
34 Anchors = [akRight, akBottom]
35 AutoSize = True
36 Caption = 'ToolBar1'
37 EdgeBorders = []
38 Flat = False
39 ShowCaptions = True
40 TabOrder = 1
41 object ToolButton1: TToolButton
42 Left = 1
43 Top = 0
44 Caption = 'Shutdown'
45 DropdownMenu = PopupMenu1
46 OnClick = ToolButton1Click
47 Style = tbsDropDown
48 end
49 end
50 object PopupMenu1: TPopupMenu
51 Left = 133
52 Top = 334
53 object MenuItemReboot: TMenuItem
54 Caption = 'Reboot'
55 OnClick = MenuItemRebootClick
56 end
57 end
58end
Note: See TracBrowser for help on using the repository browser.