Folgender Code lässt eine Anwendung im Vollbild anzeigen
Delphi-Quellcode:
var
HTaskbar: HWND;
OldVal: LongInt;
i : Integer;
begin
Playing := True;
try
// Find handle of TASKBAR
HTaskBar := FindWindow('
Shell_TrayWnd',
nil);
// Disable the taskbar
EnableWindow(HTaskBar, False);
// Hide the taskbar
ShowWindow(HTaskbar, SW_HIDE);
finally
with Form1
do
begin
BorderStyle := bsNone;
FormStyle := fsStayOnTop;
Left := 0;
Top := 0;
Height := Screen.Height;
Width := Screen.Width;
end;
end;
Meine Frage nun:
Wie kann man das rückgängig machen?