Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show "busy" dialog (spinning wheel) on Smart Phone

Can't find how it is called nor how to pop it up.

My CF application is talking over the web with a web service. Want to show my user some "busy activity" dialog.

Any suggestions how to show the default one from WinMo?

like image 576
user24518 Avatar asked Feb 27 '09 21:02

user24518


1 Answers

The following should work...

using System.Windows.Forms;
...
Cursor.Current = Cursors.WaitCursor;
like image 155
Just a Bill Avatar answered Oct 15 '22 09:10

Just a Bill