Click here to Skip to main content
15,886,873 members
Articles / Desktop Programming / Windows Forms
Alternative
Tip/Trick

Dragging a Borderless Form

Rate me:
Please Sign up or sign in to vote.
4.60/5 (5 votes)
12 Jun 2010CPOL 6.9K  
The original snippet I made is in VB.NETProtected Overrides Sub WndProc(ByRef e As Message) MyBase.WndProc(e) If e.Msg = &H84 AndAlso e.Result = &H1 Then e.Result = &H2 End SubI used Reflector to translate it to C#protected override void WndProc(ref Message...
The original snippet I made is in VB.NET

VB
Protected Overrides Sub WndProc(ByRef e As Message)
       MyBase.WndProc(e)
       If e.Msg = &H84 AndAlso e.Result = &H1 Then e.Result = &H2
   End Sub



I used Reflector to translate it to C#

C#
protected override void WndProc(ref Message e)
{
    base.WndProc(ref e);
    if ((((e.Msg == 0x84) && (e.Result == ((IntPtr) 1))) ? 1 : 0) != 0)
    {
        e.Result = (IntPtr) 2;
    }
}


Nearly the same code, but the second condition I check for here is different.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --