vote up 0 vote down star

Has anybody experience with Delphi 2009's TCategoryPanelGroup component and specifically with dynamically adding buttons to category panels?

I can't get it to work properly. Either the buttons do not appear or the alignment is screwed up. Basic outline of what I want to do:

procedure AddButton (const Caption, Group : String);
const 
  ButtonSize = 55;
  Border = 10;
var
  CategoryPanel : TCategoryPanel;
  Button : TButton;       
begin
  CategoryPanel := FindCategoryPanel (CategoryPanelGroup, Group);
  CategoryPanel.Height := CategoryPanel.Height + ButtonSize + Border;
  Button := TButton.Create (CategoryPanel);
  Button.Parent := CategoryPanel;
  Button.Width := ButtonSize;
  Button.Height := ButtonSize;
  Button.Left := 27;
  Button.Top := CategoryPanel.ClientHeight - Border - ButtonSize;
end;

Any hints?

flag

73% accept rate

2 Answers

vote up 0 vote down

What is exactly the problem? The buttons are shown exactly at the position required.

Are you sure you want square buttons without text?

Using :

Button.Left := 0;
Button.Width := CategoryPanel.ClientWidth - 2;

Makes them the exact width as the panel minus an offset of a pixel.

Using:

Button.Width := CategoryPanel.ClientWidth; Button.Left := -1;

Creates the biggest width. It There is a 1 pixel offset.

[[I'm using 2010 to be fair]].

link|flag
And there is also a 1 pixel offset in the height. – Gamecat Aug 27 at 13:30
In the actual application the buttons are subclasses of TButton and they contain images. – Smasher Aug 27 at 13:34
For the exact problem: the buttons do not appear at the correct location. They either do not appear at all or they are on top of each other with only a small offset. – Smasher Aug 27 at 13:36
Ok, I tried with normal TButton on 2010 and it looks ok (with regard of the 1 pixel offset). Can you dynamically create the button on a normal TPanel? – Gamecat Aug 27 at 13:42
Can't try it now (no access to Delphi)...I will update on monday. Thanks for your help. – Smasher Aug 28 at 18:15
show 1 more comment
vote up 0 vote down check

Problem was the way I specified the top coordinates.

I changed it to something like

ButtonCount := CategoryPanel.ComponentCount - 2;
Button.Top := Border + ButtonCount * (ButtonSize + Border);
CategoryPanel.ClientHeight := Border + (ButtonCount+1) * (ButtonSize + Border);

and it works.

Don't know exactly what caused the problem.

link|flag

Your Answer

Get an OpenID
or

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