Unit1.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. object FormMain: TFormMain
  2. Left = 193
  3. Top = 169
  4. AutoScroll = False
  5. Caption = 'Extract/Download Demo'
  6. ClientHeight = 261
  7. ClientWidth = 437
  8. Color = clBtnFace
  9. Font.Charset = ANSI_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -12
  12. Font.Name = 'Arial'
  13. Font.Style = []
  14. OldCreateOrder = True
  15. Position = poScreenCenter
  16. Scaled = False
  17. OnCreate = FormCreate
  18. OnDestroy = FormDestroy
  19. PixelsPerInch = 96
  20. TextHeight = 15
  21. object ListView1: TListView
  22. Left = 0
  23. Top = 41
  24. Width = 437
  25. Height = 201
  26. Align = alClient
  27. Columns = <
  28. item
  29. Caption = 'A list of '#39'archived'#39' files...'
  30. Width = 400
  31. end>
  32. ColumnClick = False
  33. Items.Data = {
  34. D40000000500000000000000FFFFFFFFFFFFFFFF00000000000000000D526F6F
  35. 7446696C65312E74787400000000FFFFFFFFFFFFFFFF00000000000000000D52
  36. 6F6F7446696C65322E77726900000000FFFFFFFFFFFFFFFF0000000000000000
  37. 13537562466F6C6465725C46696C65332E70617300000000FFFFFFFFFFFFFFFF
  38. 000000000000000013537562466F6C6465725C46696C65342E64666D00000000
  39. FFFFFFFFFFFFFFFF000000000000000023537562466F6C6465725C4E65737465
  40. 64537562466F6C6465725C46696C65352E637070}
  41. MultiSelect = True
  42. ReadOnly = True
  43. RowSelect = True
  44. TabOrder = 0
  45. ViewStyle = vsReport
  46. OnMouseDown = ListView1MouseDown
  47. end
  48. object Panel1: TPanel
  49. Left = 0
  50. Top = 0
  51. Width = 437
  52. Height = 41
  53. Align = alTop
  54. BevelOuter = bvNone
  55. TabOrder = 1
  56. object Label2: TLabel
  57. Left = 6
  58. Top = 6
  59. Width = 276
  60. Height = 15
  61. Caption = 'A demo of how to drag files from a zipped archive...'
  62. end
  63. object ButtonClose: TButton
  64. Left = 369
  65. Top = 5
  66. Width = 62
  67. Height = 25
  68. Cancel = True
  69. Caption = 'E&xit'
  70. TabOrder = 0
  71. OnClick = ButtonCloseClick
  72. end
  73. end
  74. object StatusBar1: TStatusBar
  75. Left = 0
  76. Top = 242
  77. Width = 437
  78. Height = 19
  79. Panels = <>
  80. SimplePanel = True
  81. SimpleText = #39'Extract'#39' files by dragging them to Explorer ...'
  82. end
  83. object DropFileSource1: TDropFileSource
  84. DragTypes = [dtCopy, dtMove]
  85. OnDrop = DropFileSource1Drop
  86. OnAfterDrop = DropFileSource1AfterDrop
  87. ImageIndex = 0
  88. ShowImage = False
  89. ImageHotSpotX = 16
  90. ImageHotSpotY = 16
  91. AllowAsyncTransfer = False
  92. Left = 398
  93. Top = 92
  94. end
  95. end