Keyboard events while dragging?

Try something like this and change things where needed to fit your working example.

Try something like this and change things where needed to fit your working example public partial class Form1 : Form { public Form1() { InitializeComponent(); label1. MouseDown += new MouseEventHandler(label1_MouseDown); textBox1. AllowDrop = true; textBox1.

DragEnter += new DragEventHandler(textBox1_DragEnter); textBox1. DragDrop += new DragEventHandler(textBox1_DragDrop); } void label1_MouseDown(object sender, MouseEventArgs e) { DoDragDrop(label1. Text, DragDropEffects.

Copy); } void textBox1_DragEnter(object sender, DragEventArgs e) { if (e.Data. GetDataPresent(DataFormats. Text)) e.

Effect = DragDropEffects. Copy; } void textBox1_DragDrop(object sender, DragEventArgs e) { textBox1. Text = (string)e.Data.

GetData(DataFormats. Text); } }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions