MainUnit.dfm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. object FormLineStippling: TFormLineStippling
  2. Left = 216
  3. Top = 109
  4. Caption = 'Line Stippling Example'
  5. ClientHeight = 221
  6. ClientWidth = 249
  7. Color = clBtnFace
  8. Constraints.MinHeight = 260
  9. Constraints.MinWidth = 265
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. ShowHint = True
  16. DesignSize = (
  17. 249
  18. 221)
  19. TextHeight = 13
  20. object PaintBox: TPaintBox32
  21. Left = 8
  22. Top = 10
  23. Width = 200
  24. Height = 200
  25. Hint = 'Click to animate'
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. TabOrder = 0
  28. OnClick = PaintBoxClick
  29. OnPaintBuffer = PaintBoxPaintBuffer
  30. end
  31. object ScrollBar: TScrollBar
  32. Left = 224
  33. Top = 10
  34. Width = 16
  35. Height = 200
  36. Anchors = [akTop, akRight, akBottom]
  37. Kind = sbVertical
  38. Min = 1
  39. PageSize = 0
  40. Position = 50
  41. TabOrder = 1
  42. OnChange = ScrollBarChange
  43. end
  44. object TimerAnimate: TTimer
  45. Enabled = False
  46. Interval = 50
  47. OnTimer = TimerAnimateTimer
  48. Left = 104
  49. Top = 92
  50. end
  51. end