Thema: Delphi Transparente Form

Einzelnen Beitrag anzeigen

barf00s
(Gast)

n/a Beiträge
 
#2

Re: Transparente Form

  Alt 21. Jul 2005, 16:09
SetLayeredWindowAttributes() ist dein Freund LWA_COLORKEY

und im OnFormCreate
Delphi-Quellcode:
var
  iStyleEx: cardinal;

begin
  iStyleEx := GetWindowLong(Handle, GWL_EX_STYLE);
  iStyleEx := iStyleEx or WS_EX_TRANSPARENT;
  SetWindowLong(Handle, GWL_EX_STYLE, iStyleEx);
end;
ich hoff ich hab getz nix verwürfelt
  Mit Zitat antworten Zitat