我在C#.NET CF应用程序中运行了一个冗长的过程,然后我想显示沙漏鼠标指针。我正在使用的代码是:
Cursor.Current = Cursors.WaitCursor;
Cursor.Show();
this.Refresh();
for (int nRow = 0; ... // lengthy process
{
Program.tblLect.Rows[nRow]["rowId"] = nRow + 1;
// tried with this, doesn't work either
//if ((nRow % 20)==0)
// Application.DoEvents();
}
Cursor.Current = Cursors.Default;
但表格中没有显示光标。
有什么想法吗?
答案 0 :(得分:1)
即使在调用Application.DoEvents时,您的应用程序也将运行ALOT,因此无法保证更新UI。尝试并保持GUI线程的负载。对于测试,只需在后台线程上运行代码即可。
答案 1 :(得分:0)
代替光标当前使用
this.Current = Cursors.Waitcusrsor;
this.Cursor = Cursors.Default;