如何获得TGroupBox主题字幕颜色

时间:2012-11-25 12:20:07

标签: delphi delphi-7

我想获得TGroupBox标题的字体颜色,因此我可以将该颜色分配给TLabel。

我想我需要使用GetThemeColor,但我似乎无法弄清楚要使用哪些参数?


更新 - 这是我根据答案使用的代码:

function GetGroupBoxTextColor: TColor;
var
  C: COLORREF;
  ElementDetails: TThemedElementDetails;
begin
  Result := clWindowText;
  if ThemeServices.ThemesEnabled then
  begin
    ElementDetails := ThemeServices.GetElementDetails(tbGroupBoxNormal);
    if GetThemeColor(ThemeServices.Theme[teButton], ElementDetails.Part, ElementDetails.State, TMT_TEXTCOLOR, C) = S_OK then
      Result := C;
  end;
end;

1 个答案:

答案 0 :(得分:5)

我认为这有效:

var
  h: HTHEME;
  clr: COLORREF;
begin
  h := OpenThemeData(Handle, 'BUTTON');
  if h <> 0 then
    try
      OleCheck(GetThemeColor(h, BP_GROUPBOX, GBS_NORMAL, TMT_TEXTCOLOR, clr));
    finally
      CloseThemeData(h);
    end;

(使用OleAuto, UxTheme