Ver Mensaje Individual
  #9  
Antiguo 27-06-2011
Avatar de ingabraham
ingabraham ingabraham is offline
Miembro
 
Registrado: ago 2007
Posts: 614
Reputación: 17
ingabraham Va por buen camino
Cita:
Empezado por Chris Ver Mensaje
En lo personal creo que la forma más práctica (sino tienes un componente adecuado) es utilizar código.

Este tipo de alineamientos los suelo hacer en el evento OnResize del formulario. Por ejemplo:
Código Delphi [-]
procedure EsteFormulario.FormularioOnResize(Sender: TObject);
begin
    // respetar los márgenes izquierdo/derecho-inferior de 16px

    // alinear el logo SC
    with SCLogoImage do
    begin
        Left := 16;
        Top := (Self.ClientHeight - (Height + 16));
    end;

    // con el logo de la derecha
    with logoDerecha do
    begin
        Left := (Self.ClientWidth - (Width + 16));
        Top := (Self.ClientHeight - (Height + 16));
    end;
end;

Saludos,
Chris
ok. muy bueno
__________________
Enseñar es la virtud de un sabio.
Responder Con Cita