📄 part_4.txt
字号:
procedure TForm2.Button1Click(Sender: TObject);
var tray:TCustomTrayIcon ;
begin
tray :=TCustomTrayIcon.Create(nil);
Tray.BalloonTitle:= '程序错误 ';
//Tray.BalloonHint:=TimeToStr(SongMon.StatusTime)+ ':传信程序运行错误! ';
tray.BalloonHint :='wcs';
Tray.BalloonTimeout:=3000;
Tray.BalloonFlags:=bfError;
tray.SetDefaultIcon ;
tray.Visible :=True ;
//tray.Icon.LoadFromFile(ExtractFilePath (Application.ExeName )+'file.ico');
Tray.ShowBalloonHint;
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -