简体   繁体   中英

Notifications bar in Delphi

I've written an application with Delphi.

This software is the notification bar. When notification appears, along with it, the software is also visible.

Can only notifications appear, appear without software? (Such as Windows 8.1 & 10 and Telegram)

VCL application is written.

Thanks.

To prevent the applications main form from being displayed add the command Application.ShowMainForm := False; to the .dpr file (menu "Project / View source"):

begin
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  Application.ShowMainForm := False;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM