in windows form I have Listview and FlowLayoutPanel
I want to drag from the Listview to FlowLayoutPanel so
in listview I use the DragEnter event
private void listViewGUI_DragEnter(object sender, DragEventArgs e)
{
}
and in the FlowLayoutPanel I activate the DragDrop
private void fpnlDisplayedGUI_DragDrop(object sender, DragEventArgs e)
{
}
the problem is that it doesn't work non of them enter any of this events , any idea how to make them enter am I missing any property
Best regards