Answers for "c# cursor wait"

C#
3

c# change cursor

// Set cursor as hourglass
Cursor.Current = Cursors.WaitCursor;

// Execute your time-intensive hashing code here...

// Set cursor as default arrow
Cursor.Current = Cursors.Default;
Posted by: Guest on March-29-2020
0

asp net c# browser cursor wait

<head runat="server">
<script>
        function setHourglass()
        {
            document.body.style.cursor = 'wait';
        }
</script>
</head>
<body onbeforeunload="setHourglass();" onunload="setHourglass();">
</body>
Posted by: Guest on September-17-2020

C# Answers by Framework

Browse Popular Code Answers by Language