VB.net drag a form without Borders

Source: Internet
Author: User
******************************************
Private ooriginalregion as Region = Nothing
' For form movement
Private bformdragging as Boolean = False
Private opointclicked as Point

'******************************************

Private Sub Form1_mousedown (ByVal sender as Object, ByVal e as System.Windows.Forms.MouseEventArgs) Handles mybase.moused Own

me.bformdragging = True
me.opointclicked = New Point (e.x, e.y)

End Sub
'******************************************

Private Sub Form1_mouseup (ByVal sender as Object, ByVal e as System.Windows.Forms.MouseEventArgs) Handles Mybase.mouseup
me.bformdragging = False

End Sub
'******************************************

Private Sub Form1_mousemove (ByVal sender as Object, ByVal e as System.Windows.Forms.MouseEventArgs) Handles Mybase.mousem Ove
If me.bformdragging Then
Dim Omovetopoint as Point
' Locate the target location based on the current mouse position
Omovetopoint = Me.pointtoscreen (New point (e.x, e.y))
' Make adjustments from the start position
Omovetopoint.offset (Me.opointclicked.x *-1, _
(Me.opointclicked.y + _
Systeminformation.captionheight + _
SystemInformation.BorderSize.Height) *-1)
' Move the form
Me.location = Omovetopoint
End If

End Sub




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.