source: trunk/Forms/FormProperty.lfm

Last change on this file was 166, checked in by chronos, 11 months ago
  • Fixed: Property form error.
File size: 2.3 KB
Line 
1object FormProperty: TFormProperty
2 Left = 945
3 Height = 306
4 Top = 567
5 Width = 670
6 Caption = 'Field'
7 ClientHeight = 306
8 ClientWidth = 670
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 LCLVersion = '2.2.6.0'
12 object ButtonOk: TButton
13 Left = 404
14 Height = 37
15 Top = 253
16 Width = 119
17 Anchors = [akRight, akBottom]
18 Caption = 'OK'
19 ModalResult = 1
20 OnClick = ButtonOkClick
21 ParentFont = False
22 TabOrder = 0
23 end
24 object ButtonCancel: TButton
25 Left = 540
26 Height = 37
27 Top = 253
28 Width = 115
29 Anchors = [akRight, akBottom]
30 Caption = 'Cancel'
31 ModalResult = 2
32 ParentFont = False
33 TabOrder = 1
34 end
35 object ScrollBox1: TScrollBox
36 Left = 16
37 Height = 235
38 Top = 8
39 Width = 637
40 HorzScrollBar.Page = 150
41 VertScrollBar.Page = 215
42 Anchors = [akTop, akLeft, akRight, akBottom]
43 ClientHeight = 233
44 ClientWidth = 635
45 TabOrder = 2
46 object Label1: TLabel
47 Left = 8
48 Height = 26
49 Top = 80
50 Width = 56
51 Caption = 'Name:'
52 ParentColor = False
53 end
54 object EditName: TEdit
55 Left = 141
56 Height = 43
57 Top = 72
58 Width = 478
59 Anchors = [akTop, akLeft, akRight]
60 OnChange = EditNameChange
61 TabOrder = 0
62 end
63 object Label2: TLabel
64 Left = 8
65 Height = 26
66 Top = 128
67 Width = 88
68 Caption = 'Attributes:'
69 ParentColor = False
70 end
71 object EditAttributes: TEdit
72 Left = 141
73 Height = 43
74 Top = 124
75 Width = 478
76 Anchors = [akTop, akLeft, akRight]
77 OnChange = EditAttributesChange
78 TabOrder = 1
79 end
80 object Label3: TLabel
81 Left = 8
82 Height = 26
83 Top = 180
84 Width = 60
85 Caption = 'Values:'
86 ParentColor = False
87 end
88 object EditValues: TEdit
89 Left = 141
90 Height = 43
91 Top = 172
92 Width = 478
93 Anchors = [akTop, akLeft, akRight]
94 TabOrder = 2
95 end
96 object Label4: TLabel
97 Left = 8
98 Height = 26
99 Top = 32
100 Width = 45
101 Caption = 'Field:'
102 ParentColor = False
103 end
104 object ComboBoxField: TComboBox
105 Left = 141
106 Height = 42
107 Top = 24
108 Width = 478
109 Anchors = [akTop, akLeft, akRight]
110 ItemHeight = 0
111 OnChange = ComboBoxFieldChange
112 Style = csDropDownList
113 TabOrder = 3
114 end
115 end
116end
Note: See TracBrowser for help on using the repository browser.