MainUnit.dfm 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. object MainForm: TMainForm
  2. Left = 833
  3. Top = 165
  4. Caption = 'Curves Example'
  5. ClientHeight = 560
  6. ClientWidth = 527
  7. Color = clBtnFace
  8. ParentFont = True
  9. OnShow = BtnDrawCurveClick
  10. TextHeight = 15
  11. object Paintbox: TPaintBox32
  12. Left = 0
  13. Top = 0
  14. Width = 527
  15. Height = 519
  16. Align = alClient
  17. TabOrder = 0
  18. OnClick = PaintboxClick
  19. OnPaintBuffer = PaintboxPaintBuffer
  20. end
  21. object Panel1: TPanel
  22. Left = 0
  23. Top = 519
  24. Width = 527
  25. Height = 41
  26. Align = alBottom
  27. BevelOuter = bvNone
  28. ShowCaption = False
  29. TabOrder = 1
  30. object BtnDrawCurve: TButton
  31. Left = 8
  32. Top = 7
  33. Width = 97
  34. Height = 25
  35. Caption = 'Draw Curve'
  36. TabOrder = 0
  37. OnClick = BtnDrawCurveClick
  38. end
  39. object CbxUpdate: TCheckBox
  40. Left = 119
  41. Top = 11
  42. Width = 88
  43. Height = 17
  44. Caption = 'Timer'
  45. TabOrder = 1
  46. OnClick = CbxUpdateClick
  47. end
  48. end
  49. end