2009-05-06 10 views

Répondre

1

Vous devez utiliser votre propre fenêtre surgissante

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; 

Vous pouvez ensuite utiliser ce TRTLHint dans this way.

Questions connexes