GR
Golda Rebecal
Syncfusion Team
August 20, 2007 09:16 AM UTC
Hi Frank,
To control the dragdrop effect of GroupViewItem, you have to handle the DragOver event of GroupView.
//to cancel the dragdrop effect of GroupViewItem
void groupView1_DragOver(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.None;
}
Please try this and let me know if this helps you.
Best regards,
Golda