mark c

mark c

  • NA
  • 14
  • 48.1k

DragEnter doesn't work

Feb 16 2011 10:46 PM
private void checkedListBox1_DragEnter(object sender, DragEventArgs e)
{
    e.Effect = DragDropEffects.Copy;
}


When I drag a file over the CheckedListBox, no "drag effect" is shown.

The Form's AllowDrop is set to true.

checkedListBox1's AllowDrop is set to true.

checkedListBox1 is contained within a groupbox.

Answers (1)