如何以编程方式在Windows Mobile 6上显示等待图标?

时间:2010-07-22 06:25:46

标签: windows-mobile compact-framework

如何以编程方式在Windows Mobile 6上显示等待图标?

它应该很容易做到,但我不能谷歌它,因为有那么多等待图标替换...: - )

谢谢,

阿德里安

2 个答案:

答案 0 :(得分:3)

这样的东西有点用处:

class WaitCursor : IDisposable
{
    public WaitCursor()
    {
        Cursor.Current = Cursors.WaitCursor;
    }

    public void Dispose()
    {
        Cursor.Current = Cursors.Default;
    }
}

它允许您使用“using”块返回默认光标,即使您有异常或返回:

public Foo()
{
    using (var c = new WaitCursor())
    {
       // do long-running stuff
       // when we exit the using block, the cursor will return to the default state
    }
}

答案 1 :(得分:1)

你的意思是等待光标?

using System.Windows.Forms;
Cursor.Current = Cursors.WaitCursor;