ResultsForm.dfm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. object ResultForm: TResultForm
  2. Left = 86
  3. Top = 156
  4. BorderStyle = bsToolWindow
  5. Caption = 'Results'
  6. ClientHeight = 388
  7. ClientWidth = 994
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poMainFormCenter
  16. OnCreate = FormCreate
  17. OnDestroy = FormDestroy
  18. OnMouseDown = FormMouseDown
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object ImageMy: TImage
  22. Left = 30
  23. Top = 35
  24. Width = 450
  25. Height = 337
  26. DragCursor = crDefault
  27. Proportional = True
  28. OnMouseDown = ImageMyMouseDown
  29. end
  30. object ImageWin: TImage
  31. Left = 510
  32. Top = 35
  33. Width = 450
  34. Height = 337
  35. DragCursor = crDefault
  36. Proportional = True
  37. OnMouseDown = ImageWinMouseDown
  38. end
  39. object Label1: TLabel
  40. Left = 30
  41. Top = 16
  42. Width = 99
  43. Height = 13
  44. Caption = 'Drawing by Imaging:'
  45. end
  46. object Label2: TLabel
  47. Left = 510
  48. Top = 16
  49. Width = 96
  50. Height = 13
  51. Caption = 'Drawing by WinAPI:'
  52. end
  53. end