我试图将光标更改为沙漏,我这样做了:
this.Cursor = Cursors.Wait;
<.... process ....>
this.Cursor = Cursors.Arrow;
问题是当进程执行时,光标不会变成沙漏并且保持不变。
我必须做什么 ?????
提前致谢
您可能对 Microsoft 论坛上的这个帖子感兴趣: http ://social.msdn.microsoft.com/forums/en-US/wpf/thread/383b207d-2f7f-43d6-ba17-967dc3f1ad0d/
Mouse.OverrideCursor = Cursors.Wait;
/* Processing */
Mouse.OverrideCursor = null;