| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- object Form1: TForm1
- Left = 213
- Top = 120
- BorderStyle = bsDialog
- Caption = 'Drag&Drop demo'
- ClientHeight = 352
- ClientWidth = 433
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = False
- Position = poScreenCenter
- PixelsPerInch = 96
- TextHeight = 13
- object Memo1: TMemo
- Left = 24
- Top = 32
- Width = 185
- Height = 97
- Lines.Strings = (
- 'Select text in this memo'
- 'drag it to another memo '
- 'and drop it there')
- TabOrder = 0
- OnEndDrag = Memo1EndDrag
- OnMouseDown = Memo1MouseDown
- OnMouseUp = Memo1MouseUp
- OnStartDrag = Memo1StartDrag
- end
- object Memo2: TMemo
- Left = 224
- Top = 32
- Width = 185
- Height = 289
- Lines.Strings = (
- 'Memo2')
- TabOrder = 1
- OnDragOver = Memo2DragOver
- end
- object ListBox1: TListBox
- Left = 24
- Top = 152
- Width = 121
- Height = 97
- DragMode = dmAutomatic
- ItemHeight = 13
- Items.Strings = (
- '1111111111112'
- '3333'
- '4'
- '4'
- '4'
- '5'
- '5')
- MultiSelect = True
- TabOrder = 2
- end
- object DragDropHelper1: TDragDropHelper
- OnGetDragImage = DragDropHelper1GetDragImage
- OnGetDragCursor = DragDropHelper1GetDragCursor
- Left = 272
- Top = 100
- end
- end
|