source: tags/1.4.0/Forms/UFormColumns.lfm

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