MainUnit.dfm 730 B

1234567891011121314151617181920212223242526272829303132
  1. object FormBezier: TFormBezier
  2. Left = 0
  3. Top = 0
  4. Caption = 'Bezier Curves'
  5. ClientHeight = 480
  6. ClientWidth = 640
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. OnDestroy = FormDestroy
  16. OnKeyDown = FormKeyDown
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object PaintBox32: TPaintBox32
  20. Left = 0
  21. Top = 0
  22. Width = 640
  23. Height = 480
  24. Align = alClient
  25. TabOrder = 0
  26. OnDblClick = PaintBox32DblClick
  27. OnMouseDown = PaintBox32MouseDown
  28. OnMouseMove = PaintBox32MouseMove
  29. OnMouseUp = PaintBox32MouseUp
  30. OnPaintBuffer = PaintBox32PaintBuffer
  31. end
  32. end