source: trunk/Packages/Common/Forms/FormKeyShortcuts.lfm

Last change on this file was 178, checked in by chronos, 3 months ago
File size: 1.3 KB
Line 
1object FormKeyShortcuts: TFormKeyShortcuts
2 Left = 839
3 Height = 329
4 Top = 609
5 Width = 704
6 Caption = 'Key shortcuts'
7 ClientHeight = 329
8 ClientWidth = 704
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '3.4.0.0'
14 object ListView1: TListView
15 Left = 5
16 Height = 319
17 Top = 5
18 Width = 694
19 Align = alClient
20 BorderSpacing.Around = 5
21 Columns = <
22 item
23 Caption = 'Action'
24 Width = 240
25 end
26 item
27 Caption = 'Window'
28 Width = 240
29 end
30 item
31 Caption = 'Shortcut'
32 Width = 199
33 end>
34 OwnerData = True
35 PopupMenu = PopupMenu1
36 ReadOnly = True
37 RowSelect = True
38 TabOrder = 0
39 ViewStyle = vsReport
40 OnData = ListView1Data
41 OnDblClick = MenuItem1Click
42 OnKeyPress = ListView1KeyPress
43 end
44 object PopupMenu1: TPopupMenu
45 Left = 408
46 Top = 144
47 object MenuItem1: TMenuItem
48 Caption = 'Execute'
49 OnClick = MenuItem1Click
50 end
51 end
52 object ListViewSort1: TListViewSort
53 ListView = ListView1
54 OnCompareItem = ListViewSort1CompareItem
55 Column = 0
56 Order = soNone
57 Left = 200
58 Top = 160
59 end
60end
Note: See TracBrowser for help on using the repository browser.