-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathunit7.lfm
More file actions
84 lines (84 loc) · 1.71 KB
/
unit7.lfm
File metadata and controls
84 lines (84 loc) · 1.71 KB
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
object fmShortcuts: TfmShortcuts
Left = 122
Height = 684
Top = 118
Width = 1195
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Shortcuts'
ClientHeight = 684
ClientWidth = 1195
KeyPreview = True
OnCreate = FormCreate
OnKeyDown = FormKeyDown
Position = poDesktopCenter
ShowInTaskBar = stNever
LCLVersion = '3.8.0.0'
object pnBottom: TPanel
Left = 0
Height = 37
Top = 647
Width = 1195
Align = alBottom
BevelOuter = bvNone
ClientHeight = 37
ClientWidth = 1195
ParentBackground = False
ParentColor = False
TabOrder = 0
object bnOK: TButton
Left = 1106
Height = 32
Top = -5
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 0
TabStop = False
OnClick = bnOKClick
end
end
object sgShortcuts: TStringGrid
Left = 15
Height = 627
Top = 10
Width = 1165
Align = alClient
AutoEdit = False
BorderSpacing.Left = 5
BorderSpacing.Right = 5
BorderSpacing.Around = 10
Color = clForm
ColCount = 2
ColumnClickSorts = True
Columns = <
item
Title.Caption = 'Shortcut'
Width = 220
end
item
Title.Caption = 'Action'
Width = 930
end>
ExtendedSelect = False
FixedColor = clForm
FixedCols = 0
FixedRows = 0
Flat = True
Font.Height = 13
GridLineColor = clBackground
HeaderHotZones = []
MouseWheelOption = mwGrid
Options = [goRowSelect, goSmoothScroll]
ParentFont = False
ParentShowHint = False
RowCount = 2
ShowHint = True
TabOrder = 1
OnPrepareCanvas = sgShortcutsPrepareCanvas
ColWidths = (
220
930
)
end
end