| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- object Form1: TForm1
- Left = 236
- Top = 162
- AutoScroll = False
- Caption = 'Simple Source Demo'
- ClientHeight = 258
- 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
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 394
- Height = 38
- Align = alTop
- BevelOuter = bvNone
- TabOrder = 0
- object Label1: TLabel
- Left = 3
- Top = 13
- Width = 246
- Height = 13
- Caption = 'Drag files from this Listbox onto Windows Explorer ...'
- end
- end
- object Panel2: TPanel
- Left = 0
- Top = 217
- Width = 394
- Height = 41
- Align = alBottom
- BevelOuter = bvNone
- Caption = 'Panel2'
- TabOrder = 1
- object ButtonClose: TButton
- Left = 160
- Top = 8
- Width = 75
- Height = 25
- Cancel = True
- Caption = '&Close'
- TabOrder = 0
- OnClick = ButtonCloseClick
- end
- end
- object ListView1: TListView
- Left = 0
- Top = 38
- Width = 394
- Height = 179
- Align = alClient
- Columns = <
- item
- Caption = 'Filenames'
- Width = 380
- end>
- MultiSelect = True
- TabOrder = 2
- ViewStyle = vsReport
- OnMouseDown = ListView1MouseDown
- end
- object DropFileSource1: TDropFileSource
- DragTypes = [dtCopy, dtLink]
- ImageIndex = 0
- ShowImage = False
- ImageHotSpotX = 16
- ImageHotSpotY = 16
- AllowAsyncTransfer = False
- Left = 355
- Top = 224
- end
- end
|