[Delphi]无边框窗口最大化不挡任务栏方法

procedure WMGetMinMaxInfo(var mes: TWMGetMinMaxInfo); message WM_GetMinMaxInfo;


procedure TfrmMain.WMGetMinMaxInfo(var mes: TWMGetMinMaxInfo);
var
  I: Integer;
  R: TRect;
begin
  R := Self.Monitor.WorkareaRect;
  mes.MinMaxInfo.ptMaxSize.X := R.Right - R.Left;
  mes.MinMaxInfo.ptMaxSize.Y := R.Bottom - R.Top;
  mes.Result := 0;
  inherited;
end;

 

[Delphi]无边框窗口最大化不挡任务栏方法

上一篇:c#get和post请求(一)Get一张图


下一篇:android ContentObserver内容观察者基本使用