winform无标题栏移动窗体

来源:互联网 发布:小米54g网络怎么切换 编辑:程序博客网 时间:2024/05/22 12:10
    Protected Overrides Sub WndProc(ByRef m As Message)        MyBase.WndProc(m)        If m.Msg = &H84 Then            Select Case m.Result.ToInt32()                Case 1                    m.Result = New IntPtr(2)                    Exit Select            End Select        End If    End Sub

原创粉丝点击