溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

VB.NET如何拖動(dòng)窗體

發(fā)布時(shí)間:2021-12-02 14:08:28 來源:億速云 閱讀:325 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹VB.NET如何拖動(dòng)窗體,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

這是一個(gè)使用VB.NET拖動(dòng)窗體中的拖動(dòng)無邊框的窗體方法,以下為源代碼,朋友們可以參考一下

  1. Private oOriginalRegion As 
    Region = Nothing 

  2. ' 用于窗體移動(dòng)  

  3. Private bFormDragging As 
    Boolean = False 

  4. Private oPointClicked As Point 

  1. Private Sub Form1_MouseDown
    (ByVal sender As Object, ByVal 
    e As System.Windows.Forms.
    MouseEventArgs) Handles 
    MyBase.MouseDown  

  2. Me.bFormDragging = True 

  3. Me.oPointClicked = 
    New Point(e.X, e.Y)  

  4. End Sub 

  1. Private Sub Form1_MouseUp
    (ByVal sender As Object, ByVal 
    e As System.Windows.Forms.
    MouseEventArgs) Handles 
    MyBase.MouseUp  

  2. Me.bFormDragging = False 

  3. End Sub 

  1. Private Sub Form1_MouseMove(ByVal 
    sender As Object, ByVal e As 
    System.Windows.Forms.MouseEventArgs) 
    Handles MyBase.MouseMove  

  2. If Me.bFormDragging Then  

  3. Dim oMoveToPoint As Point  

  4. ' 以當(dāng)前鼠標(biāo)位置為基礎(chǔ),找出目標(biāo)位置  

  5. oMoveToPoint = Me.PointToScreen
    (New Point(e.X, e.Y))  

  6. ' 根據(jù)開始位置作出調(diào)整  

  7. oMoveToPoint.Offset(Me.oPoint
    Clicked.X * -1, _  

  8. (Me.oPointClicked.Y + _  

  9. SystemInformation.CaptionHeight + _  

  10. SystemInformation.BorderSize.
    Height) * -1)  

  11. ' 移動(dòng)窗體  

  12. Me.Location = oMoveToPoint 

  13. End If  

  14. End Sub 

以上是“VB.NET如何拖動(dòng)窗體”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI