123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- object MainForm: TMainForm
- AlignWithMargins = True
- Left = 0
- Top = 0
- Caption = 'Quick Config Demo'
- ClientHeight = 493
- ClientWidth = 720
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- OnClose = FormClose
- OnCreate = FormCreate
- DesignSize = (
- 720
- 493)
- PixelsPerInch = 96
- TextHeight = 13
- object meInfo: TMemo
- Left = 8
- Top = 8
- Width = 704
- Height = 419
- Anchors = [akLeft, akTop, akRight, akBottom]
- ReadOnly = True
- ScrollBars = ssBoth
- TabOrder = 0
- end
- object btnLoadJson: TButton
- Left = 407
- Top = 433
- Width = 145
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Load From Json'
- TabOrder = 1
- OnClick = btnLoadJsonClick
- end
- object btnSaveJson: TButton
- Left = 558
- Top = 433
- Width = 154
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Save To Json'
- TabOrder = 2
- OnClick = btnSaveJsonClick
- end
- object btnLoadRegistry: TButton
- Left = 407
- Top = 464
- Width = 145
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Load From Registry'
- TabOrder = 3
- OnClick = btnLoadRegistryClick
- end
- object SaveRegistry: TButton
- Left = 558
- Top = 464
- Width = 154
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Save To Registry'
- TabOrder = 4
- OnClick = SaveRegistryClick
- end
- end
|