带爱像的右下角HINT显示,自动隐藏

function alterInfo: TdxAlertWindowManager;
begin
  if not Assigned(Falter) then
  begin
    Falter := TdxAlertWindowManager.Create(nil);
  end;
  Result := Falter;
end;

procedure ShowTrayHint(const AText: string; const ACaption: string = '';
  AImageIndex: TImageIndex = 0);
begin
  alterInfo.Show(ACaption, AText, AImageIndex);
end;

相关文章:

  • 2021-09-30
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-14
  • 2022-01-22
  • 2021-10-15
猜你喜欢
  • 2022-12-23
  • 2021-07-12
  • 2022-12-23
  • 2021-10-06
  • 2022-12-23
  • 2021-06-07
  • 2021-10-19
相关资源
相似解决方案