Registriert seit: 4. Feb 2009
Ort: BO
24 Beiträge
RAD-Studio 2009 Arc
|
AW: Form/Fenster in eine bestimme richtung "Fliegen" lassen
2. Jan 2012, 16:21
Vielleicht hilft das: http://www.delphi-treff.de/tipps/app...um-systemtray/
Delphi-Quellcode:
procedure TForm1.ApplicationEvents1Minimize(Sender: TObject);
begin
Screen.DrawAnimatedRects( Handle, IDANI_CAPTION, BoundsRect,
Rect(Width - 20, Height, Width - 10, Height));
end;
Delphi-Quellcode:
procedure TForm1.ApplicationEvents1Restore(Sender: TObject);
begin
Screen.DrawAnimatedRects( Handle, IDANI_CAPTION,
Rect(Width - 20, Height, Width - 10, Height), BoundsRect);
end;
|
|
Zitat
|