且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Windows窗体中显示等待光标

更新时间:2023-01-23 18:25:01





试试这个:

Hi,

Try this:
this.Cursor = Cursors.WaitCursor;



有关C#Windows窗体中游标的更多信息: http:// www.c-sharpcorner.com/uploadfile/mahesh/cursors-in-C-Sharp/ [ ^ ]



希望这有帮助。


More about cursors in C# Windows Forms: http://www.c-sharpcorner.com/uploadfile/mahesh/cursors-in-C-Sharp/[^]

Hope this helps.


嗨亲爱的,



hi dear,

//cursor activities is wait cursor
Cursor = Cursors.WaitCursor;

//cursor activities is default.
Cursor = Cursors.Default;