Thema
:
Delphi
Fenstergröße im wsNormal-Zustand trotz wsMaximized
Einzelnen Beitrag anzeigen
Flocke
Registriert seit: 9. Jun 2005
Ort: Unna
1.172 Beiträge
Delphi 10.2 Tokyo Professional
#
2
Re: Fenstergröße im wsNormal-Zustand trotz wsMaximized
3. Sep 2005, 12:10
Siehe
GetWindowPlacement
Also etwa so:
markieren
Delphi-Quellcode:
var
wp: TWindowPlacement;
begin
wp.length := SizeOf(TWindowPlacement);
GetWindowPlacement(Form1.Handle, wp);
// in wp.rcNormalPosition steht das "normale" Fensterrechteck
end
;
Volker
Besucht meine
Garage
Aktuell:
RtfLabel 1.3d
,
PrintToFile 1.4
Zitat
Flocke
Öffentliches Profil ansehen
Mehr Beiträge von Flocke finden