vote up 1 vote down star
1

I'm trying to center a fixed size control within a form.

Out of interest, is there a non-idiotic way of doing this? What I really want is something analogous to the text-align css property.

At the moment, I'm setting the padding property of the surrounding form to a suitable size and setting the Dock property of the control to fill.

flag

17% accept rate

5 Answers

vote up 5 vote down

You could achieve this with the use of anchors. Or more precisely the non use of them.

Controls are anchored by default to the top left of the form which means when the form size will be changed, their distance from the top left side of the form will remain constant. If you change the control anchor to bottom left, then the control will keep the same distance from the bottom and left sides of the form when the form if resized.

Turning off the anchor in a direction will keep the control centred in that direction when resizing.

link|flag
vote up 3 vote down
myControl.Left = (this.ClientSize.Width - myControl.Width) / 2 ;
myControl.Top = (this.ClientSize.Height - myControl.Height) / 2;
link|flag
vote up 0 vote down

It involves eyeballing it (well I suppose you could get out a calculator and calculate) but just insert said control on the form and then remove any anchoring (anchor = None).

link|flag
Could you please elborate? I can't make sense of your answer. – Mitch Wheat Jan 29 at 12:38
In my attempt to answer quickly (I always get beaten to the punch on StackOverflow) I was saying what the user splattne said more eloquently: turn off anchoring for the control you want to center. – David in Dakota Jan 29 at 22:15
vote up 0 vote down

Since you don't state if the form can resize or not there is an easy way if you don't care about resizing (if you do care, go with Mitch Wheats solution):

Select the control -> Format (menu option) -> Center in Window -> Horizontally or Vertically

link|flag
vote up 1 vote down

Both Mitch's and splattne's answers will work. Splattne's answer is, in my opinion, better as you can set it and forget it. Mitch's requires the code to be placed in the form's Resize event as well as in the form's Load event (a la VB6 days!).

link|flag
I certainly don't miss those epic amounts of VB6 resize code! – pezi_pink_squirrel Jan 29 at 13:53
AMEN! But, without that struggle we wouldn't appreciate what we have today. – perryneal Jan 29 at 13:55

Your Answer

Get an OpenID
or

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