在Delphi中更新状态栏需要花费很长时间!
示例:我搜索文件并显示状态栏中找到和搜索的文件数:
OwnerForm.StatusBar1.SimpleText
:= Format('Searching (%d found in %d files) ...', [NumFound, Total]);
每次更新状态栏每次增加约1秒的搜索时间。
有没有办法减少这种过多的开销,但仍然会更新用户的状态?
答案 0 :(得分:7)
请勿快速更新状态栏。如果您经常更新它会对您的性能产生严重影响,用户将如何阅读状态?
此外,我进行了一项小测试,显示它在超过100毫秒的时间内更新状态栏1000次。这是我5岁便宜的家用电脑。
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
a: Cardinal;
begin
a := GetTickCount;
for i := 0 to 1000 do
begin
StatusBar1.SimpleText := IntToStr(i);
end;
ShowMessage(IntToStr(GetTickCount - a));
end;
[编辑]
替代解决方案:
TForm1 = class(TForm)
StatusBar1: TStatusBar;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
FLastUpdate: TDateTime;
public
procedure UpdateStatus(Status: string);
procedure ForceStatus(Status: string);
end;
procedure TForm1.ForceStatus(Status: string);
begin
StatusBar1.SimpleText := Status;
FLastUpdate := Now;
end;
procedure TForm1.UpdateStatus(Status: string);
begin
if MilliSecondsBetween(Now, FLastUpdate) > 500 then
begin
StatusBar1.SimpleText := Status;
FLastUpdate := Now;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
a: Cardinal;
begin
a := GetTickCount;
for i := 0 to 1000000 do
begin
// unimportant: progress
UpdateStatus(IntToStr(i));
end;
// Important: final state
ForceStatus(Format('Done in %d milliseconds', [GetTickCount - a]));
end;
答案 1 :(得分:4)
当您在单独的线程中运行搜索时,您只需使用NumFound和Total值更新一些变量。在主线程中,您可以每隔一秒(或您喜欢的任何更新间隔)触发读取此变量并更新状态栏的时间。
由于NumFound和Total可能是整数,因此您可以使用InterlockedXXX函数以简单但线程安全的方式更新变量。