CSS for grabbing cursors (drag & drop)

In case anyone else stumbles across this question, this is probably what you were looking for: .grabbable { cursor: move; /* fallback if grab cursor is unsupported */ cursor: grab; cursor: -moz-grab; cursor: -webkit-grab; } /* (Optional) Apply a “closed-hand” cursor during drag operation. */ .grabbable:active { cursor: grabbing; cursor: -moz-grabbing; cursor: -webkit-grabbing; }

How can I make the cursor turn to the wait cursor?

You can use Cursor.Current. // Set cursor as hourglass Cursor.Current = Cursors.WaitCursor; // Execute your time-intensive hashing code here… // Set cursor as default arrow Cursor.Current = Cursors.Default; However, if the hashing operation is really lengthy (MSDN defines this as more than 2-7 seconds), you should probably use a visual feedback indicator other than the … Read more

tech