Delphi: TGraphicControl支持PaintTo方法

Posted crwy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi: TGraphicControl支持PaintTo方法相关的知识,希望对你有一定的参考价值。

Delphi之TWinControl支持PaintTo方法,可以方便的Paint有句柄控件,而此方法,TGraphicControl没有。

这使得有时需要Paint无句柄控件诸如TLabel时颇为费事,能否扩充它?

可以。使用class helper for技术,通过其Parent,仍然调用TWinControl支持PaintTo方法,中转一下。

 

直上代码吧,以做备忘:

  TGraphicControlHelper = class helper for TGraphicControl
    procedure PaintTo(Canvas: TCanvas; X, Y: Integer);
  end;

实现:

{ TGraphicControlHelper }

procedure TGraphicControlHelper.PaintTo(Canvas: TCanvas; X, Y: Integer);
var
  bmp: TBitmap;
  sr: TRect;
begin
  if Self.Parent = nil then Exit;

  bmp := TBitmap.Create;
  try
    bmp.SetSize(Parent.Width, Parent.Height);
    Self.Parent.PaintTo(bmp.Canvas.Handle, X, Y);
    sr := Self.BoundsRect;
    Windows.OffsetRect(sr, 1, 1);
    Canvas.CopyRect(Self.ClientRect, bmp.Canvas, sr);
  finally
    bmp.Free;
  end;
end;

 

完美支持

以上是关于Delphi: TGraphicControl支持PaintTo方法的主要内容,如果未能解决你的问题,请参考以下文章

重新声明自定义 Delphi 组件的 Width 属性

Delphi透明组件开发 good

我的 TGraphic.Draw(Canvas, Rect) 代码不起作用

如何使自定义 GUI 控件对屏幕阅读器可见?

Delphi 11 Alexandria Ribbons 经典控件支持

Delphi 的 TNetHTTPClient 后代支持 http2