1
Reply

DragEnter doesn't work

mark c

mark c

Feb 16 2011 10:46 PM
4.1k
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)