1
Answer

DragEnter doesn't work

mark c

mark c

13y
4.2k
1
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)