frmMain.fmx 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'Form1'
  5. ClientHeight = 552
  6. ClientWidth = 750
  7. FormFactor.Width = 320
  8. FormFactor.Height = 480
  9. FormFactor.Devices = [Desktop]
  10. OnCreate = FormCreate
  11. OnClose = FormClose
  12. DesignerMasterStyle = 0
  13. object Memo1: TMemo
  14. Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
  15. DataDetectorTypes = []
  16. Anchors = [akLeft, akTop, akRight, akBottom]
  17. Position.X = 8.000000000000000000
  18. Position.Y = 8.000000000000000000
  19. Size.Width = 737.000000000000000000
  20. Size.Height = 497.000000000000000000
  21. Size.PlatformDefault = False
  22. TabOrder = 0
  23. Viewport.Width = 733.000000000000000000
  24. Viewport.Height = 493.000000000000000000
  25. end
  26. object btnToJson: TButton
  27. Anchors = [akLeft, akBottom]
  28. Position.X = 544.000000000000000000
  29. Position.Y = 520.000000000000000000
  30. TabOrder = 2
  31. Text = 'ToJson'
  32. OnClick = btnToJsonClick
  33. end
  34. object btnFromJson: TButton
  35. Anchors = [akLeft, akBottom]
  36. Enabled = False
  37. Position.X = 656.000000000000000000
  38. Position.Y = 520.000000000000000000
  39. TabOrder = 1
  40. Text = 'FromJson'
  41. OnClick = btnFromJsonClick
  42. end
  43. end