vote up 4 vote down star
1

What is your preferred way of keeping controls centered on its parent when the parent change width or height?

flag

55% accept rate

3 Answers

vote up 5 vote down check

If by 'centered' you mean "it was already in the middle and you want to keep it there without resizing it", then remove all anchors. If it should be resized, gabr's solution is the one to with :)

link|flag
vote up 4 vote down

Set control's Anchors property to [akLeft, akTop, akRight, akBottom].

link|flag
This is indeed the way to do it. – Gamecat Nov 24 '08 at 9:50
This assumes the childcontrol is allowd to resize. – Vegar Nov 24 '08 at 10:10
Yes. The other answer describes the non-resizing approach. – gabr Nov 24 '08 at 10:27
vote up 0 vote down

If you mean a sort of "updating, please wait..." type thing, I manually move it in the Form's OnResize event. This allows me to keep a panel out of the way during design, and hidden normally, but I can make it visible when needed.

procedure TMyForm.FormResize(Sender: TObject);
var
  nNewTop : Integer;
begin
  inherited;
  pnlRegenerating.Left := (ClientWidth - pnlRegenerating.Width) div 2;
  nNewTop := (ClientHeight div 5) {* 4};
  if (nNewTop + pnlRegenerating.Height) > ClientHeight then
    nNewTop := ClientHeight - pnlRegenerating.Height - 4;
  pnlRegenerating.Top := nNewTop;
end;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.