Posted 21 December 2017, 4:55 pm EST
Hey! So right now I have drag and drop working, but I can’t seem to get there to be any sort of effect… I have tried and tried but nothing is working. I can’t even get the DraggingColumn event to work with simple code
c1FlexGrid1.DraggingColumn += C1FlexGrid1_DraggingColumn;
//MessageBox.Show("Load complete");
}
private void C1FlexGrid1_DraggingColumn(object sender, DragRowColEventArgs e)
{
MessageBox.Show("column being dragged");
}
When I drag the column the event never gets triggered… any ideas?