How to Drag and Drop controls in C#
By FoxLearn 7/19/2024 2:23:46 AM 6.5K
How to Drag and Drop controls in C#
Open your Visual Studio, then 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
You can install the Control.Draggable library using NuGet Package Manager. Search for "Control.Draggable" and install it into your project.
Drag and drop Buton, CheckBox, ComboBox, TextBox,..etc from the Visual Studio toolbox onto your form designer.
Adding a Form_Load event handler, then modify your c# code as shown below.
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); }
Once you've completed the above steps, run your application, and you should be able to drag and drop the specified control(s) within your form.
VIDEO TUTORIAL
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
- How to Use Form Load and Button click Event in C#
- How to use Advanced Filter DataGridView in C#
- How to use TagListControl in C#
- How to use Error Provider in C#
- How to Create a Random Password Generator in C#
- How to make an Application auto run on Windows startup in C#