Pelo que percebi ninguém entendeu minha duvida ou ninguém conseguiu fazer o que pedi!
Porem eu acabei conseguindo, creio que n seja um método muito convencional mas criei outro button para servir de guia!!!
Porem decide fazer o intervalo de 20 em 20
não vou conseguir explicar o que eu fiz, então vou deixar o código:
Imports System.Drawing.Color
Public Class Form1
Private box(3) As Button
Private cntr(3) As Button
Private clickm As Boolean
Private cntrtop(3) As Control
Private ctrdown As Boolean
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim btn As Button
Dim controlmove As Button
Dim contorltop As Control
For i As Integer = 1 To 3
btn = New Button
btn.Name = i
btn.Size = New Size(100, 20)
btn.Location = New Point(100, 10 + 20 * (i - 1))
btn.BackColor = LightBlue
box(i) = btn
Me.Controls.Add(btn)
controlmove = New Button
controlmove.Name = "cntM" & i
controlmove.Location = btn.Location
controlmove.Size = New Size(10, 10)
controlmove.Visible = True
cntr(i) = controlmove
Me.Controls.Add(controlmove)
controlmove.BringToFront()
contorltop = New Control
contorltop.Name = "cntT" & i
contorltop.Text = i
contorltop.Location = btn.Location + New Point(0, btn.Height)
contorltop.Size = New Size(100, 2)
contorltop.Cursor = Cursors.SizeNS
cntrtop(i) = contorltop
contorltop.Visible = True
Me.Controls.Add(contorltop)
AddHandler btn.MouseDown, AddressOf apertado
AddHandler btn.MouseUp, AddressOf desapertado
AddHandler btn.MouseMove, AddressOf mover
AddHandler btn.Move, AddressOf moverbtn
AddHandler contorltop.MouseDown, AddressOf ctrdownsub
AddHandler contorltop.MouseUp, AddressOf ctrupsub
AddHandler contorltop.MouseMove, AddressOf ctrmmovesub
AddHandler contorltop.Move, AddressOf ctrmovesub
Next
End Sub
Private Sub apertado(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim btn As Button = DirectCast(sender, Button)
clickm = True
End Sub
Private Sub desapertado(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim btn As Button = DirectCast(sender, Button)
Dim ctr As Button = cntr(btn.Name)
Dim ctrT As Control = cntrtop(btn.Name)
clickm = False
btn.Location = ctr.Location
ctrT.Location = btn.Location + New Point(0, btn.Height)
End Sub
Private Sub mover(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim btn As Button = DirectCast(sender, Button)
Dim ctr As Button = cntr(btn.Name)
Dim ctrT As Control = cntrtop(btn.Name)
If clickm = True Then
If btn.Location.Y <= ctr.Location.Y + 20 And btn.Location.Y >= ctr.Location.Y - 20 Then
btn.Location = btn.Location + New Point(0, e.Y)
ElseIf btn.Location.Y > ctr.Location.Y + 20 Then
btn.Location = ctr.Location + New Point(0, 20)
ElseIf btn.Location.Y < ctr.Location.Y - 20 Then
btn.Location = ctr.Location - New Point(0, 20)
End If
ctrT.Location = btn.Location + New Point(0, btn.Height - 5)
End If
End Sub
Private Sub moverbtn(ByVal sender As Object, ByVal e As System.EventArgs)
Dim btn As Button = DirectCast(sender, Button)
Dim ctr As Control = cntr(btn.Name)
If btn.Location.Y = ctr.Location.Y + 20 Then
ctr.Location = btn.Location
ElseIf btn.Location.Y = ctr.Location.Y - 20 Then
ctr.Location = btn.Location
End If
End Sub
Private Sub ctrdownsub(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim ctr As Control = DirectCast(sender, Control)
ctrdown = True
End Sub
Private Sub ctrupsub(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim ctr As Control = DirectCast(sender, Control)
Dim btn As Button = box(ctr.Text)
ctrdown = False
If Not ctr.Location.Y >= btn.Location.Y + 20 Then
ctr.Location = btn.Location + New Point(0, 20)
End If
End Sub
Private Sub ctrmmovesub(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim ctr As Control = DirectCast(sender, Control)
Dim btn As Button = box(ctr.Text)
If ctrdown = True Then
If ctr.Location.Y >= btn.Location.Y + 20 Then
If ctr.Location.Y < (btn.Location.Y + btn.Height) + 20 And ctr.Location.Y > (btn.Location.Y + btn.Height) - 20 Then
ctr.Location = ctr.Location + New Point(0, e.Y)
ElseIf ctr.Location.Y > (btn.Location.Y + btn.Height) + 20 Then
ctr.Location = btn.Location + New Point(0, (btn.Height + 20))
ElseIf ctr.Location.Y < (btn.Location.Y + btn.Height) - 20 Then
ctr.Location = btn.Location + New Point(0, btn.Height - 20)
End If
Else
ctr.Location = btn.Location + New Point(0, 20)
End If
End If
End Sub
Private Sub ctrmovesub(ByVal sender As Object, ByVal e As System.EventArgs)
Dim ctr As Control = DirectCast(sender, Control)
Dim btn As Button = box(ctr.Text)
If btn.Size.Height >= 20 Then
If ctr.Location.Y = (btn.Location.Y + btn.Height) + 20 Then
btn.SetBounds(btn.Left, btn.Top, btn.Width, btn.Height + 20)
ElseIf ctr.Location.Y = (btn.Location.Y + btn.Height) - 20 Then
btn.SetBounds(btn.Left, btn.Top, btn.Width, btn.Height - 20)
End If
Else
btn.SetBounds(btn.Left, btn.Top, btn.Width, 20)
End If
End Sub
End Class
Com base na mesma solução fiz um button para movimentar de 20 em 20 tmb!
Espero que ajude alguém com isso! e se souberem como simplificar esse código adoraria saber!!! XD
Tem mais uma coisa que queria saber: como faço pra identificar de ocorreu sobreposição entre os buttons?
porque quero que, quando ocorra uma sobreposição, o button reduza sua largura pela metade e fique um na esquerda e outro na direita!