source: trunk/Forms/FormColumns.lfm

Last change on this file was 162, checked in by chronos, 11 months ago
  • Modified: Updated Common package.
File size: 2.1 KB
Line 
1object FormColumns: TFormColumns
2 Left = 922
3 Height = 540
4 Top = 450
5 Width = 715
6 Caption = 'Columns settings'
7 ClientHeight = 540
8 ClientWidth = 715
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '2.2.6.0'
14 object ButtonOk: TButton
15 Left = 583
16 Height = 37
17 Top = 492
18 Width = 119
19 Anchors = [akRight, akBottom]
20 Caption = 'OK'
21 ModalResult = 1
22 OnClick = ButtonOkClick
23 ParentFont = False
24 TabOrder = 0
25 end
26 object ButtonCancel: TButton
27 Left = 455
28 Height = 37
29 Top = 493
30 Width = 115
31 Anchors = [akRight, akBottom]
32 Caption = 'Cancel'
33 ModalResult = 2
34 ParentFont = False
35 TabOrder = 1
36 end
37 object ListBoxActive: TListBox
38 Left = 19
39 Height = 433
40 Top = 40
41 Width = 221
42 Anchors = [akTop, akLeft, akBottom]
43 ItemHeight = 0
44 OnSelectionChange = ListBoxActiveSelectionChange
45 TabOrder = 2
46 TopIndex = -1
47 end
48 object ListBoxAvailable: TListBox
49 Left = 440
50 Height = 433
51 Top = 40
52 Width = 256
53 Anchors = [akTop, akLeft, akRight, akBottom]
54 ItemHeight = 0
55 OnSelectionChange = ListBoxAvailableSelectionChange
56 TabOrder = 3
57 TopIndex = -1
58 end
59 object ButtonToLeft: TButton
60 Left = 251
61 Height = 38
62 Top = 115
63 Width = 177
64 Caption = '<<'
65 OnClick = ButtonToLeftClick
66 TabOrder = 4
67 end
68 object ButtonToRight: TButton
69 Left = 251
70 Height = 38
71 Top = 160
72 Width = 177
73 Caption = '>>'
74 OnClick = ButtonToRightClick
75 TabOrder = 5
76 end
77 object ButtonUp: TButton
78 Left = 251
79 Height = 38
80 Top = 208
81 Width = 177
82 Caption = 'Move up'
83 OnClick = ButtonUpClick
84 TabOrder = 6
85 end
86 object ButtonDown: TButton
87 Left = 251
88 Height = 38
89 Top = 256
90 Width = 177
91 Caption = 'Move down'
92 OnClick = ButtonDownClick
93 TabOrder = 7
94 end
95 object Label1: TLabel
96 Left = 19
97 Height = 26
98 Top = 8
99 Width = 56
100 Caption = 'Active:'
101 ParentColor = False
102 end
103 object Label2: TLabel
104 Left = 440
105 Height = 26
106 Top = 8
107 Width = 82
108 Caption = 'Available:'
109 ParentColor = False
110 end
111end
Note: See TracBrowser for help on using the repository browser.