In this tutorial, I will be using C#.
Step 1: Create a New Project (C# WinForms Application) in Visual Studio.
Step 2: Add a "TextBox" and Set the Following Properties
Property Value
Name NotesTextBox
Multiline True
ScrollBars Vertical
Step 3: Run the application and try to drag some text from web browser. You will see,
it will NOT drag and drop any text into TextBox (NotesTextBox).
Step 4: Now Set "AllowDrop" property of TextBox (NotesTextBox) to "True".
Step 5: Now Add "TextBox DragEnter" event. Add the following code.
The line "e.Effect = DragDropEffects.Copy;" means copy the content.
The line "NotesTextBox.Text += e.Data.GetData(DataFormats.Text).ToString();" means add the
"dragged" content to the TextBox.
For more information, please follow the video.
Drag And Drop
23 February 2015
09:04
Programming Page 1

More Related Content

PPTX
IBM cognos work space configuration.pptx
PPT
Aws1
PDF
Windows Phone Workshop: WCF services
PPTX
Microsoft Live Instructions
PPTX
Microsoft Live Instructions
PDF
제 4회 DGMIT R&D 컨퍼런스 : Making a JavaScript based Application in Mac OS X
PPT
Microsoft VS C++ Add a project
PPTX
Servlet session 3
IBM cognos work space configuration.pptx
Aws1
Windows Phone Workshop: WCF services
Microsoft Live Instructions
Microsoft Live Instructions
제 4회 DGMIT R&D 컨퍼런스 : Making a JavaScript based Application in Mac OS X
Microsoft VS C++ Add a project
Servlet session 3

Recently uploaded (20)

PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
HVAC Specification 2024 according to central public works department
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PDF
Empowerment Technology for Senior High School Guide
PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PDF
IGGE1 Understanding the Self1234567891011
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PDF
My India Quiz Book_20210205121199924.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
Chinmaya Tiranga quiz Grand Finale.pdf
HVAC Specification 2024 according to central public works department
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Weekly quiz Compilation Jan -July 25.pdf
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
Empowerment Technology for Senior High School Guide
FORM 1 BIOLOGY MIND MAPS and their schemes
IGGE1 Understanding the Self1234567891011
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
TNA_Presentation-1-Final(SAVE)) (1).pptx
My India Quiz Book_20210205121199924.pdf
Virtual and Augmented Reality in Current Scenario
AI-driven educational solutions for real-life interventions in the Philippine...
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
Ad
Ad

Simple Drag and drop in C#

  • 1. In this tutorial, I will be using C#. Step 1: Create a New Project (C# WinForms Application) in Visual Studio. Step 2: Add a "TextBox" and Set the Following Properties Property Value Name NotesTextBox Multiline True ScrollBars Vertical Step 3: Run the application and try to drag some text from web browser. You will see, it will NOT drag and drop any text into TextBox (NotesTextBox). Step 4: Now Set "AllowDrop" property of TextBox (NotesTextBox) to "True". Step 5: Now Add "TextBox DragEnter" event. Add the following code. The line "e.Effect = DragDropEffects.Copy;" means copy the content. The line "NotesTextBox.Text += e.Data.GetData(DataFormats.Text).ToString();" means add the "dragged" content to the TextBox. For more information, please follow the video. Drag And Drop 23 February 2015 09:04 Programming Page 1