| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- object Form1: TForm1
- Left = 286
- Top = 171
- AutoScroll = False
- Caption = 'Simple Target Demo'
- ClientHeight = 254
- ClientWidth = 394
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = True
- Position = poScreenCenter
- Scaled = False
- PixelsPerInch = 96
- TextHeight = 13
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 394
- Height = 41
- Align = alTop
- BevelOuter = bvNone
- TabOrder = 0
- object Label1: TLabel
- Left = 8
- Top = 16
- Width = 248
- Height = 13
- Caption = 'Drop files from Windows Explorer onto this Listview...'
- end
- end
- object Panel2: TPanel
- Left = 0
- Top = 209
- Width = 394
- Height = 45
- Align = alBottom
- BevelOuter = bvNone
- Caption = 'Panel2'
- TabOrder = 1
- object ButtonClose: TButton
- Left = 159
- Top = 12
- Width = 75
- Height = 25
- Cancel = True
- Caption = '&Close'
- TabOrder = 0
- OnClick = ButtonCloseClick
- end
- end
- object ListView1: TListView
- Left = 0
- Top = 41
- Width = 394
- Height = 168
- Align = alClient
- Columns = <
- item
- Caption = 'Filenames'
- Width = 380
- end>
- ReadOnly = True
- TabOrder = 2
- ViewStyle = vsReport
- end
- object DropFileTarget1: TDropFileTarget
- Dragtypes = [dtCopy, dtLink]
- GetDataOnEnter = False
- OnDrop = DropFileTarget1Drop
- ShowImage = True
- Target = ListView1
- OptimizedMove = True
- AllowAsyncTransfer = False
- Left = 329
- Top = 220
- end
- end
|