Arrastar e soltar para usuários do Visual Basic 6.0
O modelo para a implementação de edição do tipo arrastar e soltar em Visual Basic 2008 difere consideravelmente o modelo do Visual Basic 6.0.
Diferenças Conceituais
No Visual Basic 6.0, a edição do tipo arrastar e soltar pode ser feito por meio de dois métodos diferentes: padrão de arrastar, para arrastar entre controles em um formulário e arrastar OLE, para arrastar entre aplicativos e formulários.
In Visual Basic 2008, um único modelo de edição do tipo arrastar e soltar é usado. Ele é semelhante ao arrastar OLE, mas os nomes e os parâmetros para métodos de do tipo arrastar e soltar e eventos são diferentes e o modelo de evento é diferente.
Alterações código para arrastar e soltar
Alterações código para arrastar e descartar texto
O exemplo a seguir mostra as diferenças no código para arrastar o texto de um TextBox controle para outro.
' Visual Basic 6.0
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Text1.Text = "Hello World"
' Begin dragging by calling the OLEDrag method.
Text1.OLEDrag
End Sub
Private Sub Text1_OLEStartDrag(Data As DataObject, AllowedEffects As Long)
' Only allow copying.
AllowedEffects = vbDropEffectCopy
Data.Clear
' Populate the Data object with the text to copy and the format.
Data.SetData Text1.Text, vbCFText
End Sub
Private Sub Text2_OLEDragOver(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single, State As Integer)
' Make sure that the format is text.
If Data.GetFormat(vbCFText) Then
' If it is text, enable dropping for the second TextBox.
Text2.OLEDropMode = vbOLEDropManual
End If
End Sub
Private Sub Text2_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
' Copy the text from the Data object to the second TextBox.
Text2.Text = Data.GetData(vbCFText)
End Sub
' Visual Basic
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e _
As System.EventArgs) Handles MyBase.Load
' Dropping must be enabled before the dragging occurs.
TextBox2.AllowDrop = True
End Sub
Private Sub TextBox1_MouseDown(ByVal sender As Object, ByVal e _
As System.Windows.Forms.MouseEventArgs) Handles TextBox1.MouseDown
TextBox1.Text = "Hello World"
' Begin dragging by calling the DoDragDrop method.
' OLEStartDrag is replaced by arguments on the method.
TextBox1.DoDragDrop(TextBox1.Text, DragDropEffects.Copy)
End Sub
Private Sub TextBox2_DragEnter(ByVal sender As Object, ByVal e _
As System.Windows.Forms.DragEventArgs) Handles TextBox2.DragEnter
' Make sure that the format is text.
If (e.Data.GetDataPresent(DataFormats.Text)) Then
' Allow drop.
e.Effect = DragDropEffects.Copy
Else
' Do not allow drop.
e.Effect = DragDropEffects.None
End If
End Sub
Private Sub TextBox2_DragDrop(ByVal sender As Object, ByVal e _
As System.Windows.Forms.DragEventArgs) Handles TextBox2.DragDrop
' Copy the text to the second TextBox.
TextBox2.Text = e.Data.GetData(DataFormats.Text).ToString
End Sub
Observações de Atualização
Código do tipo arrastar e soltar não pode ser atualizado automaticamente para Visual Basic 2008; deve ser reescrito usando o novo modelo. Qualquer código de do tipo arrastar e soltar é marcado com avisos de atualização durante o processo de atualização.
Consulte também
Outros recursos
Operações de Arrastar e Soltar e Suporte à Área de Transferência