59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 200
|
|
Top = 112
|
|
Caption = 'ImageEnVect Drag'#39'n'#39'Drop - www.ImageEn.com'
|
|
ClientHeight = 462
|
|
ClientWidth = 688
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = True
|
|
Position = poScreenCenter
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Label2: TLabel
|
|
Left = 162
|
|
Top = 184
|
|
Width = 60
|
|
Height = 13
|
|
Caption = 'Drag here->'
|
|
end
|
|
object Label3: TLabel
|
|
Left = 12
|
|
Top = 8
|
|
Width = 314
|
|
Height = 13
|
|
Caption = 'Example showing how to drag and drop text into a TImageEnVect'
|
|
end
|
|
object ListBox1: TListBox
|
|
Left = 12
|
|
Top = 32
|
|
Width = 145
|
|
Height = 417
|
|
DragMode = dmAutomatic
|
|
ItemHeight = 13
|
|
Items.Strings = (
|
|
'This is Text ONE'
|
|
'Text TWO'
|
|
'Text THREE'
|
|
'Some more text'
|
|
'etc.')
|
|
TabOrder = 0
|
|
end
|
|
object ImageEnVect1: TImageEnVect
|
|
Left = 228
|
|
Top = 32
|
|
Width = 449
|
|
Height = 417
|
|
Background = clWindow
|
|
LegacyBitmap = True
|
|
EnableInteractionHints = True
|
|
TabOrder = 1
|
|
OnDragDrop = ImageEnVect1DragDrop
|
|
OnDragOver = ImageEnVect1DragOver
|
|
end
|
|
end
|