0

我试图将光标更改为沙漏,我这样做了:

this.Cursor = Cursors.Wait;

<.... process ....>

this.Cursor = Cursors.Arrow;

问题是当进程执行时,光标不会变成沙漏并且保持不变。

我必须做什么 ?????

提前致谢

4

1 回答 1

5

您可能对 Microsoft 论坛上的这个帖子感兴趣: http ://social.msdn.microsoft.com/forums/en-US/wpf/thread/383b207d-2f7f-43d6-ba17-967dc3f1ad0d/

Mouse.OverrideCursor = Cursors.Wait;
/* Processing */
Mouse.OverrideCursor = null;
于 2012-08-30T13:22:43.637 回答