3

我正在尝试创建透明的子窗口。

procedure TForm1.BtnGoClick(Sender: TObject);
var
  bmp:TBitmap;
  BitmapPos: TPoint;
  BitmapSize: TSIZE;
  BlendFunction: _BLENDFUNCTION;
  exStyle: Cardinal;
begin
  bmp := TBitmap.Create;
  bmp.LoadFromFile('my32bitbitmap.bmp');
  exStyle := GetWindowLongA(Form2.Handle, GWL_EXSTYLE);
  if (exStyle and WS_EX_LAYERED = 0) then
    SetWindowLong(Form2.Handle, GWL_EXSTYLE, exStyle or WS_EX_LAYERED);
  BitmapPos := Point(0, 0);
  BitmapSize.cx := bmp.Width;
  BitmapSize.cy := bmp.Height;
  BlendFunction.BlendOp := AC_SRC_OVER;
  BlendFunction.BlendFlags := 0;
  BlendFunction.SourceConstantAlpha := 200;
  BlendFunction.AlphaFormat := AC_SRC_ALPHA;
  UpdateLayeredWindow(Form2.Handle, 0, nil, @BitmapSize, bmp.Canvas.Handle, @BitmapPos, 0, @BlendFunction, ULW_ALPHA);

  Windows.SetParent(Form2.Handle, Form1.Handle);
  bmp.Free;      
end;

它几乎可以工作:Form2 成为 Form1 内的漂亮透明窗口。但看起来 Form2 并没有随着 Form1 移动。当我移动 Form1 时,Form2-Window 移动,但在屏幕上我看到它的时候。当 Form1 被移动时,我无法点击 Form2,点击通过,所以我知道窗口被移动了。

那么问题是如何使没有这些功能的子透明窗口?(只是随着它的父母移动的普通窗口)

4

1 回答 1

1

每次移动或调整 Form2 的大小后,您都需要调用 UpdateLayeredWindow。或者您可以将其替换为 TCustomTransparentControl 后代。

于 2011-10-13T12:16:16.550 回答