Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "DraggableDemo" and then click OK
Step 2: Install Control.Draggable from nuget
Step 3: Design your form as below

Step 4: Add code to Form_Load event handler
private void Form1_Load(object sender, EventArgs e)
{
ControlExtension.Draggable(button1, true);
ControlExtension.Draggable(textBox1, true);
ControlExtension.Draggable(comboBox1, true);
ControlExtension.Draggable(checkBox1, true);
ControlExtension.Draggable(dataGridView1, true);
ControlExtension.Draggable(progressBar1, true);
}
VIDEO TUTORIALS