首页 > 代码库 > Delphi 窗口半透明

Delphi 窗口半透明

//    function SetLayeredWindowAttributes(hwnd:HWND; crKey:Longint; bAlpha:byte; dwFlags:longint ):longint; stdcall; external user32;//函数声明               

//    引用Windows单元后可以直接使用


procedure TForm2.Button8Click(Sender: TObject);

var
  l:longint;
begin
  l:=getWindowLong(Handle, GWL_EXSTYLE);
  l := l Or WS_EX_LAYERED;
  SetWindowLong (handle, GWL_EXSTYLE, l);
  SetLayeredWindowAttributes (handle, 0, 180, LWA_ALPHA);
  //第二个参数是指定透明颜色
  //第二个参数为0则使用第四个参数设置alpha值,从0到255

end;