C# Move Panel inside Form

995 Views Asked by At

I would like to make certain panels within my Form draggable/movable. I have integrated:

    public const int WM_NCLBUTTONDOWN = 0xA1;
    public const int HT_CAPTION = 0x2;
    [DllImportAttribute("user32.dll")]
    public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
    [DllImportAttribute("user32.dll")]
    public static extern bool ReleaseCapture();

as per other answers I have found here. Along with:

    void pnlSettings_MouseMove(object sender, MouseEventArgs e)
    {
        Drag_Form(Handle, e);
    }
    public static void Drag_Form(IntPtr Handle, MouseEventArgs e){
        if (e.Button == MouseButtons.Left)
        {
          ReleaseCapture();
          SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
        }
    }

And what seems to happen is the whole Form moves instead of just the Panel(pnlSettings). I can't seem to figure out how to get the panel alone to move.

1

There are 1 best solutions below

1
SLaks On BEST ANSWER

Handle is the handle of the form.

You need to pass the .Handle of the control you want to move.