source: branches/test1/Client/Forms/UFormItemEdit.lfm

Last change on this file was 46, checked in by chronos, 13 years ago
File size: 3.4 KB
Line 
1object ItemEditForm: TItemEditForm
2 Left = 274
3 Height = 486
4 Top = 137
5 Width = 608
6 Caption = 'Edit item'
7 ClientHeight = 486
8 ClientWidth = 608
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '0.9.31'
14 object ButtonCancel: TButton
15 Left = 434
16 Height = 25
17 Top = 457
18 Width = 75
19 Anchors = [akRight, akBottom]
20 Caption = 'Cancel'
21 OnClick = ButtonCancelClick
22 TabOrder = 0
23 end
24 object ButtonSave: TButton
25 Left = 522
26 Height = 25
27 Top = 457
28 Width = 75
29 Anchors = [akRight, akBottom]
30 Caption = 'Save'
31 OnClick = ButtonSaveClick
32 TabOrder = 1
33 end
34 object Panel1: TPanel
35 Left = 0
36 Height = 451
37 Top = 0
38 Width = 608
39 Align = alTop
40 Anchors = [akTop, akLeft, akRight, akBottom]
41 BevelOuter = bvNone
42 ClientHeight = 451
43 ClientWidth = 608
44 TabOrder = 2
45 object Splitter1: TSplitter
46 Cursor = crVSplit
47 Left = 0
48 Height = 3
49 Top = 248
50 Width = 608
51 Align = alBottom
52 ResizeAnchor = akBottom
53 end
54 object PanelControls: TPanel
55 Left = 0
56 Height = 248
57 Top = 0
58 Width = 608
59 Align = alClient
60 Anchors = [akLeft, akRight, akBottom]
61 BevelOuter = bvNone
62 TabOrder = 1
63 end
64 object Panel2: TPanel
65 Left = 0
66 Height = 200
67 Top = 251
68 Width = 608
69 Align = alBottom
70 BevelOuter = bvNone
71 ClientHeight = 200
72 ClientWidth = 608
73 TabOrder = 2
74 object TabControl1: TTabControl
75 Left = 0
76 Height = 24
77 Top = 0
78 Width = 608
79 TabStop = False
80 OnChange = TabControl1Change
81 TabIndex = 0
82 Tabs.Strings = (
83 'Tab1'
84 'Tab2'
85 'Tab3'
86 )
87 Align = alTop
88 TabOrder = 0
89 end
90 object ListView1: TListView
91 Left = 0
92 Height = 144
93 Top = 24
94 Width = 608
95 Align = alClient
96 Columns = <>
97 OwnerData = True
98 ReadOnly = True
99 RowSelect = True
100 TabOrder = 1
101 ViewStyle = vsReport
102 OnData = ListView1Data
103 OnDblClick = ListView1DblClick
104 OnKeyPress = ListView1KeyPress
105 OnResize = ListView1Resize
106 OnSelectItem = ListView1SelectItem
107 end
108 object Panel3: TPanel
109 Left = 0
110 Height = 32
111 Top = 168
112 Width = 608
113 Align = alBottom
114 BevelOuter = bvNone
115 ClientHeight = 32
116 ClientWidth = 608
117 TabOrder = 2
118 object ButtonAdd: TButton
119 Left = 8
120 Height = 25
121 Top = 6
122 Width = 64
123 Caption = 'Add'
124 OnClick = ButtonAddClick
125 TabOrder = 0
126 end
127 object ButtonDelete: TButton
128 Left = 80
129 Height = 25
130 Top = 6
131 Width = 67
132 Caption = 'Delete'
133 Enabled = False
134 OnClick = ButtonDeleteClick
135 TabOrder = 1
136 end
137 object ButtonView: TButton
138 Left = 156
139 Height = 25
140 Top = 6
141 Width = 64
142 Caption = 'View'
143 Enabled = False
144 OnClick = ButtonViewClick
145 TabOrder = 2
146 end
147 object ButtonEdit: TButton
148 Left = 226
149 Height = 25
150 Top = 6
151 Width = 62
152 Caption = 'Edit'
153 Enabled = False
154 OnClick = ButtonEditClick
155 TabOrder = 3
156 end
157 end
158 end
159 end
160end
Note: See TracBrowser for help on using the repository browser.