0
有沒有辦法在delphi trayicon BaloonHint中對齊文本?在delphi trayicon中右到左的文本BaloonHint
有沒有辦法在delphi trayicon BaloonHint中對齊文本?在delphi trayicon中右到左的文本BaloonHint
您將需要使用自己的提示窗口
type
TRTLHint = class(THintWindow)
protected
procedure CreateParams(var Params: TCreateParams); override;
end;
procedure TRTLHint.CreateParams(var Params: TCreateParams);
begin
inherited;
Params.ExStyle := Params.ExStyle or WS_EX_LAYOUTRTL;
end;
然後,您可以在this way使用此TRTLHint。