Delphi:像工具栏中的渐变一样

发布于 2024-11-30 20:53:54 字数 796 浏览 1 评论 0原文

我需要一个带有渐变的工具栏,但我想要没有热轨的普通按钮。我作为 TToolBar 类执行以下操作:

我的代码:

procedure TForm7.ToolBar1CustomDraw(Sender: TToolBar; const ARect: TRect;
      var DefaultDraw: Boolean);
begin
 GradientFillCanvas(sender.Canvas, clWindow, $00D6D6D6, ARect, gdVertical); //a GraphUtil unit
end;

ComCtrls 单元中的工具栏功能:

function TToolBar.GradientDrawToolBar(const ARect: TRect): Boolean;
begin
  Result := True;
  if gdoGradient in GradientDrawingOptions then
    GradientFillCanvas(Canvas, FGradientStartColor, FGradientEndColor,
      ARect, GradientDirection);
end;

为什么我有不同的结果?

在此处输入图像描述

为我添加:

GetShadowColor(clBtnFace, -25) = $00D6D6D6

I need a tool bar with a gradient, but I want normal buttons without a hot track. I do as a TToolBar class do:

My code:

procedure TForm7.ToolBar1CustomDraw(Sender: TToolBar; const ARect: TRect;
      var DefaultDraw: Boolean);
begin
 GradientFillCanvas(sender.Canvas, clWindow, $00D6D6D6, ARect, gdVertical); //a GraphUtil unit
end;

Tool bar's function from a ComCtrls unit:

function TToolBar.GradientDrawToolBar(const ARect: TRect): Boolean;
begin
  Result := True;
  if gdoGradient in GradientDrawingOptions then
    GradientFillCanvas(Canvas, FGradientStartColor, FGradientEndColor,
      ARect, GradientDirection);
end;

Why do I have different results?

enter image description here

Added:

GetShadowColor(clBtnFace, -25) = $00D6D6D6 for me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月无声 2024-12-07 20:53:54

如果检查 ComCtrls 的源,FGradientEndColor 的值是 GetShadowColor(clBtnFace, -25),该值基于系统颜色,并且可能会根据 Windows 外观设置而变化。尝试在自定义绘制代码中使用相同的值而不是 $00D6D6D6。

If you check the source for ComCtrls, the value for FGradientEndColor is GetShadowColor(clBtnFace, -25), which is based on a system color and may change depending on Windows appearance settings. Try using the same value in your custom draw code instead of $00D6D6D6.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文