MainUnit.dfm 702 B

12345678910111213141516171819202122232425262728293031323334
  1. object FormMain: TFormMain
  2. Left = 220
  3. Top = 105
  4. Caption = 'Particle Swarm example'
  5. ClientHeight = 723
  6. ClientWidth = 1003
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. KeyPreview = True
  14. Position = poScreenCenter
  15. WindowState = wsMaximized
  16. OnKeyDown = FormKeyDown
  17. OnShow = FormShow
  18. TextHeight = 13
  19. object PaintBox: TPaintBox32
  20. Left = 0
  21. Top = 0
  22. Width = 1003
  23. Height = 723
  24. Align = alClient
  25. TabOrder = 0
  26. OnResize = PaintBoxResize
  27. end
  28. object TimerFrameRate: TTimer
  29. Interval = 5000
  30. OnTimer = TimerFrameRateTimer
  31. Left = 304
  32. Top = 216
  33. end
  34. end