String_frMain.lfm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. object frMain: TfrMain
  2. Left = 248
  3. Height = 240
  4. Top = 154
  5. Width = 390
  6. Caption = 'String example'
  7. ClientHeight = 240
  8. ClientWidth = 390
  9. OnCreate = FormCreate
  10. OnDestroy = FormDestroy
  11. Position = poDesktopCenter
  12. LCLVersion = '2.0.10.0'
  13. object lbDesc: TLabel
  14. Left = 10
  15. Height = 17
  16. Top = 10
  17. Width = 370
  18. Align = alTop
  19. Alignment = taCenter
  20. AutoSize = False
  21. BorderSpacing.Around = 10
  22. Caption = 'This example show a basic usage of TBrookString'
  23. Font.Style = [fsBold]
  24. ParentColor = False
  25. ParentFont = False
  26. end
  27. object btAddNow: TButton
  28. Left = 16
  29. Height = 25
  30. Top = 40
  31. Width = 112
  32. Caption = '&Add now'
  33. OnClick = btAddNowClick
  34. TabOrder = 0
  35. end
  36. object btShowContent: TButton
  37. Left = 136
  38. Height = 25
  39. Top = 40
  40. Width = 112
  41. Caption = '&Show content'
  42. Enabled = False
  43. OnClick = btShowContentClick
  44. TabOrder = 1
  45. end
  46. object btClear: TButton
  47. Left = 256
  48. Height = 25
  49. Top = 40
  50. Width = 112
  51. Caption = '&Clear'
  52. Enabled = False
  53. OnClick = btClearClick
  54. TabOrder = 2
  55. end
  56. end