source: trunk/Forms/FormImportFormats.lfm

Last change on this file was 221, checked in by chronos, 4 days ago
  • Fixed: Use scrollbox in resizable forms.
  • Fixed: Translate all forms.
File size: 2.1 KB
Line 
1object FormImportFormats: TFormImportFormats
2 Left = 473
3 Height = 622
4 Top = 327
5 Width = 887
6 Caption = 'Import formats'
7 ClientHeight = 622
8 ClientWidth = 887
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 Position = poScreenCenter
13 LCLVersion = '3.6.0.0'
14 object ListView1: TListView
15 Left = 6
16 Height = 577
17 Top = 6
18 Width = 875
19 Align = alClient
20 BorderSpacing.Around = 6
21 Columns = <
22 item
23 Caption = 'Name'
24 Width = 860
25 end>
26 MultiSelect = True
27 OwnerData = True
28 ParentFont = False
29 PopupMenu = PopupMenuImportSource
30 ReadOnly = True
31 RowSelect = True
32 TabOrder = 0
33 ViewStyle = vsReport
34 OnData = ListView1Data
35 OnDblClick = ListView1DblClick
36 OnKeyPress = ListView1KeyPress
37 OnSelectItem = ListView1SelectItem
38 end
39 object ToolBar1: TToolBar
40 Left = 0
41 Height = 33
42 Top = 589
43 Width = 887
44 Align = alBottom
45 Images = Core.ImageListSmall
46 ParentFont = False
47 ParentShowHint = False
48 ShowHint = True
49 TabOrder = 1
50 object ToolButton1: TToolButton
51 Left = 1
52 Top = 2
53 Action = AAdd
54 end
55 object ToolButton2: TToolButton
56 Left = 36
57 Top = 2
58 Action = AModify
59 end
60 object ToolButton3: TToolButton
61 Left = 71
62 Top = 2
63 Action = ARemove
64 end
65 end
66 object ActionList1: TActionList
67 Left = 612
68 Top = 336
69 object AAdd: TAction
70 Caption = 'Add'
71 ImageIndex = 0
72 OnExecute = AAddExecute
73 ShortCut = 45
74 end
75 object ARemove: TAction
76 Caption = 'Remove'
77 ImageIndex = 4
78 OnExecute = ARemoveExecute
79 ShortCut = 46
80 end
81 object AModify: TAction
82 Caption = 'Modify'
83 ImageIndex = 3
84 OnExecute = AModifyExecute
85 ShortCut = 13
86 end
87 end
88 object PopupMenuImportSource: TPopupMenu
89 Left = 221
90 Top = 330
91 object MenuItem1: TMenuItem
92 Action = AAdd
93 end
94 object MenuItem2: TMenuItem
95 Action = AModify
96 end
97 object MenuItem3: TMenuItem
98 Action = ARemove
99 end
100 end
101end
Note: See TracBrowser for help on using the repository browser.