Main.dfm 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. object MainForm: TMainForm
  2. AlignWithMargins = True
  3. Left = 0
  4. Top = 0
  5. Caption = 'Quick Config Demo'
  6. ClientHeight = 493
  7. ClientWidth = 720
  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. DesignSize = (
  18. 720
  19. 493)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object meInfo: TMemo
  23. Left = 8
  24. Top = 8
  25. Width = 704
  26. Height = 419
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. ReadOnly = True
  29. ScrollBars = ssBoth
  30. TabOrder = 0
  31. end
  32. object btnLoadJson: TButton
  33. Left = 407
  34. Top = 433
  35. Width = 145
  36. Height = 25
  37. Anchors = [akRight, akBottom]
  38. Caption = 'Load From Json'
  39. TabOrder = 1
  40. OnClick = btnLoadJsonClick
  41. end
  42. object btnSaveJson: TButton
  43. Left = 558
  44. Top = 433
  45. Width = 154
  46. Height = 25
  47. Anchors = [akRight, akBottom]
  48. Caption = 'Save To Json'
  49. TabOrder = 2
  50. OnClick = btnSaveJsonClick
  51. end
  52. object btnLoadRegistry: TButton
  53. Left = 407
  54. Top = 464
  55. Width = 145
  56. Height = 25
  57. Anchors = [akRight, akBottom]
  58. Caption = 'Load From Registry'
  59. TabOrder = 3
  60. OnClick = btnLoadRegistryClick
  61. end
  62. object SaveRegistry: TButton
  63. Left = 558
  64. Top = 464
  65. Width = 154
  66. Height = 25
  67. Anchors = [akRight, akBottom]
  68. Caption = 'Save To Registry'
  69. TabOrder = 4
  70. OnClick = SaveRegistryClick
  71. end
  72. end