Changeset 291 for trunk/Forms/UFormItem.pas
- Timestamp:
- Mar 26, 2019, 1:16:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormItem.pas
r290 r291 79 79 InitControls; 80 80 LoadData(Item); 81 Caption := Item.GetClass SysName;81 Caption := Item.GetClassName; 82 82 end else begin 83 83 DataControls.Clear; … … 157 157 NewControl := TCheckBox.Create(nil); 158 158 end else raise Exception.Create('Unsupported type ' + IntToStr(Integer(DataType))); 159 NewControl.Left := 1 00;159 NewControl.Left := 150; 160 160 NewControl.Top := Y; 161 161 NewControl.Parent := Self; 162 162 Core.CoolTranslator1.TranslateComponent(NewControl); 163 Core.ThemeManager1.ApplyTheme(NewControl); 163 164 NewControl.Visible := True; 164 165 DataControls.Add(NewControl);
Note:
See TracChangeset
for help on using the changeset viewer.