Ejemplo n.º 1
0
 private void Form1_DragEnter(object sender, DragEventArgs e)
 {
     if (e.Data.GetDataPresent(DataFormats.FileDrop))
     {
         DragandDropICON.BringToFront();
         DragandDropICON.Show();
         e.Effect = DragDropEffects.Copy;
     }
 }