Jump to content
raynor009

[GHID][VB.NET]Cum sa miscam o fereastra fara margini

Recommended Posts

Dschideti VB creati in proiect nou apasati pe Form1 si mergeti la FormBorderStyle si selectati None.Dupaia dati dublu click pe Form1 si paste la codul meu.

Public Class Form1
Private Const WM_NCHITTEST As Integer = &H84
Private Const HTCLIENT As Integer = &H1
Private Const HTCAPTION As Integer = &H2

Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
Select Case m.Msg
Case WM_NCHITTEST
MyBase.WndProc(m)
If m.Result = HTCLIENT Then
m.Result = HTCAPTION
End If
Case Else
MyBase.WndProc(m)
End Select
End Sub

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...