通常,当我有一个需要一些时间的任务时,我会使用这样的脚本:
procedure Work;
var
cPrevious: TCursor;
begin
cPrevious := Screen.Cursor;
Screen.Cursor := crHourGlass;
try
// the task
finally
Screen.Cursor := cPrevious;
end;
end;
使用 FireMonkey,Screen没有属性:Cursor。
向用户提供反馈的最佳方式是什么?
我按照评论和答案...使用不透明度较低的 TPanel 和TAniIndicator (我还模糊了其他组件):
谢谢!