10820 : How to use the OnPreCursorChangeEvent to change the cursor…..
…based on the Gantt.MouseMoveKind value gantt1.TimeItemArea.OnPreCursorChangeEvent += new PreCursorChangeEvent(TimeItemArea_OnPreCursorChangeEvent); void TimeItemArea_OnPreCursorChangeEvent(OffscreenDraw aOffscreenDraw, PreCursorChangeEventArgs e) { if (gantt1.MouseMoveKind==MouseMoveKind.resizee) { e.Cursor=Cursors.Cross; } }… Continue reading