MainUnit.dfm 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. object FmPngDemo: TFmPngDemo
  2. Left = 299
  3. Top = 55
  4. BorderIcons = [biSystemMenu, biMaximize]
  5. Caption = 'PNG Demonstration'
  6. ClientHeight = 279
  7. ClientWidth = 475
  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. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object ImageDisplay: TImage32
  19. Left = 0
  20. Top = 38
  21. Width = 475
  22. Height = 241
  23. Align = alClient
  24. Bitmap.DrawMode = dmBlend
  25. Bitmap.ResamplerClassName = 'TNearestResampler'
  26. BitmapAlign = baTopLeft
  27. Scale = 1.000000000000000000
  28. ScaleMode = smNormal
  29. TabOrder = 0
  30. ExplicitTop = 8
  31. ExplicitHeight = 262
  32. end
  33. object Panel1: TPanel
  34. Left = 0
  35. Top = 0
  36. Width = 475
  37. Height = 38
  38. Align = alTop
  39. BevelOuter = bvNone
  40. TabOrder = 1
  41. object CheckBoxFit: TCheckBox
  42. Left = 184
  43. Top = 11
  44. Width = 97
  45. Height = 19
  46. Caption = 'Scale to fit'
  47. TabOrder = 0
  48. OnClick = CheckBoxFitClick
  49. end
  50. end
  51. object ButtonLoad: TButton
  52. Left = 8
  53. Top = 8
  54. Width = 75
  55. Height = 25
  56. Caption = 'Load...'
  57. TabOrder = 2
  58. OnClick = ButtonLoadClick
  59. end
  60. object ButtonSave: TButton
  61. Left = 89
  62. Top = 8
  63. Width = 75
  64. Height = 25
  65. Caption = 'Save...'
  66. TabOrder = 3
  67. OnClick = ButtonSaveClick
  68. end
  69. end