使用Delphi 10 Seattle,我尝试使用此代码使应用程序的Windows任务栏按钮闪烁:
procedure TForm1.Button1Click(Sender: TObject);
begin
FlashWindow(Application.Handle, True);
end;
或:
procedure TForm1.Button1Click(Sender: TObject);
var
Flash: FLASHWINFO;
begin
FillChar(Flash, SizeOf(Flash), 0);
Flash.cbSize := SizeOf(Flash);
Flash.hwnd := Application.Handle;
Flash.dwFlags := FLASHW_ALL or FLASHW_TIMER;
Flash.dwTimeout := 1000;
FlashWindowEx(Flash);
end;
或:
procedure TForm1.Button1Click(Sender: TObject);
var
Flash: FLASHWINFO;
begin
FillChar(Flash, SizeOf(Flash), 0);
Flash.cbSize := SizeOf(Flash);
Flash.hwnd := Application.Handle;
Flash.uCount := 5;
Flash.dwTimeOut := 2000;
Flash.dwFlags := FLASHW_ALL;
FlashWindowEx(Flash);
end;
操作系统:Windows 7 x64 SP1
不幸的是,这不起作用:任务栏按钮根本不闪烁。
我该如何做到这一点?
答案 0 :(得分:6)
在.dpr文件中,您将看到以下行:
Application.MainFormOnTaskBar := True;
这意味着与任务栏按钮关联的窗口是主窗体的窗口。而不是Application
对象的那个。因此,在您的代码中,将Application.MainFormHandle
传递给FlashWindow
或FlashWindowEx
。