微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

windows – 在Delphi表单上递归更新字体

我正在尝试迭代窗体上的所有控件并启用ClearType字体平滑.像这样的东西:

procedure TForm4.UpdateControls(AParent: TWinControl);
var
  I: Integer;
  ACtrl: TControl;
  tagLOGFONT: TLogFont;
begin
  for I := 0 to AParent.ControlCount-1 do
  begin
    ACtrl:= AParent.Controls[I];

    // if ParentFont=False,update the font here...

    if ACtrl is TWinControl then
      UpdateControls(Ctrl as TWinControl);
  end;
end;

现在,是否有一种简单的方法可以检查ACtrl是否具有Font属性,因此我可以将Font.Handle传递给somethink,如:

Getobject(ACtrl.Font.Handle,SizeOf(TLogFont),@tagLOGFONT);
tagLOGFONT.lfQuality := 5;
ACtrl.Font.Handle := CreateFontIndirect(tagLOGFONT);

先感谢您.

解决方法

您使用TypInfo单元,更具体地说是方法IsPublishedProp和GetordProp.

在你的情况下,它将是这样的:

if IsPublishedProp(ACtrl,'Font') then
  ModifyFont(TFont(GetordProp(ACtrl,'Font')))

来自我的一个库的片段应该让您走上正确的道路:

function ContainsNonemptyControl(controlParent: TWinControl;
  const requiredControlNamePrefix: string;
  const ignoreControls: string = ''): boolean;
var
  child   : TControl;
  iControl: integer;
  ignored : TStringList;
  obj     : TObject;
begin
  Result := true;
  if ignoreControls = '' then
    ignored := nil
  else begin
    ignored := TStringList.Create;
    ignored.Text := ignoreControls;
  end;
  try
    for iControl := 0 to controlParent.ControlCount-1 do begin
      child := controlParent.Controls[iControl];
      if (requiredControlNamePrefix = '') or
         SameText(requiredControlNamePrefix,copy(child.Name,1,Length(requiredControlNamePrefix))) then
      if (not assigned(ignored)) or (ignored.IndexOf(child.Name) < 0) then
      if IsPublishedProp(child,'Text') and (GetStrProp(child,'Text') <> '') then
        Exit
      else if IsPublishedProp(child,'Lines') then begin
        obj := TObject(cardinal(GetordProp(child,'Lines')));
        if (obj is TStrings) and (Unwrap(TStrings(obj).Text,child) <> '') then
          Exit;
      end;
    end; //for iControl
  finally FreeAndNil(ignored); end;
  Result := false;
end; { ContainsNonemptyControl }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐