首页 > 代码库 > 刷新整个画布

刷新整个画布

procedure TForm1.FormResize(Sender: TObject);
begin
  InvalidateRect(Form1.Handle, nil, false);
end;

 

刷新整个画布