Ver Mensaje Individual
  #7  
Antiguo 21-06-2011
Avatar de Chris
[Chris] Chris is offline
Miembro Premium
 
Registrado: abr 2007
Ubicación: Jinotepe, Nicaragua
Posts: 1.678
Reputación: 19
Chris Va por buen camino
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
__________________
Perfil Github - @chrramirez - Delphi Blog - Blog Web
Responder Con Cita