How to Drag and Drop controls in C#
By FoxLearn 7/19/2024 2:23:46 AM 7.36K
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 update UI from another thread in C#
- How to Search DataGridView by using TextBox in C#
- How to read and write to text file in C#
- How to save files using SaveFileDialog in C#
- How to Print a Picture Box in C#
- How to zoom an image in C#
- How to Print DataGridView with Header & Footer with Landscape in C#
- How to Get all Forms and Open Form with Form Name in C#