Dav*_*way 3 delphi delphi-xe2 vcl-styles
在绘制 VCL 样式的窗口元素时,我遇到了绘制不正确的角的问题。在具有圆角的样式上,我在控件的边界矩形和样式的圆角窗口角之间的空间中得到一个白色背景。

上图是使用 Aqua Light Slate 运行的,但任何带有圆角的样式都会出现同样的问题。我错过了什么?
type
TSample = class(TCustomControl)
protected
procedure Paint; override;
end;
{ TForm1 }
procedure TForm1.FormCreate(Sender: TObject);
var
R: TRect;
S: TSample;
begin
R := ClientRect;
InflateRect(R, -20, -20);
S := TSample.Create(Application);
S.Parent := Self;
S.BoundsRect := R;
end;
{ TSample }
procedure TSample.Paint;
var
Details: TThemedElementDetails;
begin
Details := StyleServices.GetElementDetails(twCaptionActive);
StyleServices.DrawParentBackground(Self.Handle, Canvas.Handle, Details, False);
StyleServices.DrawElement(Canvas.Handle, Details, ClientRect);
end;
Run Code Online (Sandbox Code Playgroud)
好的,我在你的问题上花了几分钟,我找到了答案。绘制圆角的关键是调用StyleServices.GetElementRegion函数获取区域,然后使用SetWindowRgn函数将区域应用到控件上。
检查这个样本
procedure TSample.Paint;
var
Details : TThemedElementDetails;
Region : HRgn;
LRect : TRect;
begin
Details := StyleServices.GetElementDetails(twCaptionActive);
LRect := Rect(0, 0, Width, Height);
StyleServices.GetElementRegion(Details, LRect, Region);
SetWindowRgn(Handle, Region, True);
StyleServices.DrawParentBackground(Self.Handle, Canvas.Handle, Details, False);
StyleServices.DrawElement(Canvas.Handle, Details, ClientRect);
end;
Run Code Online (Sandbox Code Playgroud)
这就是结果

| 归档时间: |
|
| 查看次数: |
2113 次 |
| 最近记录: |