Ver Mensaje Individual
  #2  
Antiguo 05-02-2016
Avatar de AgustinOrtu
[AgustinOrtu] AgustinOrtu is offline
Miembro Premium
NULL
 
Registrado: ago 2013
Ubicación: Argentina
Posts: 1.858
Reputación: 15
AgustinOrtu Es un diamante en brutoAgustinOrtu Es un diamante en brutoAgustinOrtu Es un diamante en brutoAgustinOrtu Es un diamante en bruto
Fijate de esta manera:

Código Delphi [-]
procedure TForm1.FormCreate(Sender: TObject);
var
  ALabel: TLabel;
begin
  ALabel := TLabel.Create(Self);
  ALabel.Parent := Self;
  ALabel.Align := alClient;
  ALabel.Alignment := taCenter;
  ALabel.Layout := tlCenter;
  ALabel.Caption := 'Texto centrado';
end;
Responder Con Cita