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.
Loading
Ibrahim ErsoyPosted Mar 7, 2011, 3:49 PM
Maybe Control.FindControl does the trick.