Main.dfm 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. object MainForm: TMainForm
  2. AlignWithMargins = True
  3. Left = 0
  4. Top = 0
  5. Caption = 'Quick Config Demo'
  6. ClientHeight = 347
  7. ClientWidth = 523
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. OnClose = FormClose
  16. OnCreate = FormCreate
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object meInfo: TMemo
  20. Left = 8
  21. Top = 8
  22. Width = 507
  23. Height = 273
  24. ReadOnly = True
  25. ScrollBars = ssBoth
  26. TabOrder = 0
  27. end
  28. object btnLoadJson: TButton
  29. Left = 208
  30. Top = 287
  31. Width = 145
  32. Height = 25
  33. Caption = 'Load From Json'
  34. TabOrder = 1
  35. OnClick = btnLoadJsonClick
  36. end
  37. object btnSaveJson: TButton
  38. Left = 359
  39. Top = 287
  40. Width = 154
  41. Height = 25
  42. Caption = 'Save To Json'
  43. TabOrder = 2
  44. OnClick = btnSaveJsonClick
  45. end
  46. object btnLoadRegistry: TButton
  47. Left = 208
  48. Top = 318
  49. Width = 145
  50. Height = 25
  51. Caption = 'Load From Registry'
  52. TabOrder = 3
  53. OnClick = btnLoadRegistryClick
  54. end
  55. object SaveRegistry: TButton
  56. Left = 359
  57. Top = 318
  58. Width = 154
  59. Height = 25
  60. Caption = 'Save To Registry'
  61. TabOrder = 4
  62. OnClick = SaveRegistryClick
  63. end
  64. end