10814 : I want to change the cursor while resizing the time item and while moving the time item?

Question

I want to change the cursor while resizing the time item and while moving the time item, how is it possible ?

Answer

You can implement the OnPreCursorChangeEvent on Gantt.TimeItemArea

You can check the Gantt.MouseMoveKind to get information about ongoing operations.

You can also look at this article https://plexityhide.com/faqs_gen_GTPNET/10547.htm

10547 : Change the cursor during a move operation dependent on the row under the TimeItem?

Question

Is it possible to change the cursor during a move operation dependent on the row under the TimeItem?

Answer

Sure,

Implement OnTimeItemAreaMouseMove,

check if the Gantt.MouseMoveKind==MouseMoveKind.move,

check what row you are over ; Gantt.GanttRowFromPoint

And when you have decided on an appropriate cursor, change it: Gantt.Cursor=myNewCursor