Main.fmx 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. object MainForm: TMainForm
  2. Left = 0
  3. Top = 0
  4. Caption = 'MainForm'
  5. ClientHeight = 480
  6. ClientWidth = 366
  7. FormFactor.Width = 320
  8. FormFactor.Height = 480
  9. FormFactor.Devices = [Desktop]
  10. OnCreate = FormCreate
  11. DesignerMasterStyle = 0
  12. object meInfo: TMemo
  13. Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
  14. DataDetectorTypes = []
  15. Align = Client
  16. Size.Width = 366.000000000000000000
  17. Size.Height = 408.000000000000000000
  18. Size.PlatformDefault = False
  19. TabOrder = 0
  20. Viewport.Width = 362.000000000000000000
  21. Viewport.Height = 404.000000000000000000
  22. end
  23. object Panel1: TPanel
  24. Align = MostBottom
  25. Position.Y = 408.000000000000000000
  26. Size.Width = 366.000000000000000000
  27. Size.Height = 72.000000000000000000
  28. Size.PlatformDefault = False
  29. TabOrder = 1
  30. object btnLoadYaml: TSpeedButton
  31. Align = Left
  32. Size.Width = 137.000000000000000000
  33. Size.Height = 72.000000000000000000
  34. Size.PlatformDefault = False
  35. Text = 'Load from File'
  36. OnClick = btnLoadYamlClick
  37. end
  38. object btnSaveYaml: TSpeedButton
  39. Align = Right
  40. Position.X = 184.000000000000000000
  41. Size.Width = 182.000000000000000000
  42. Size.Height = 72.000000000000000000
  43. Size.PlatformDefault = False
  44. Text = 'Save to File'
  45. OnClick = btnSaveYamlClick
  46. end
  47. end
  48. end