Center Button in PaneL

G

Guest

I have a usercontrol that has a panel as a band across the width of the user
control

When the usercontrol is diaplayed the button is not centered.
If I anchor the button to the panel Left/Top/Right the button get's streched
which I want to try to avoid.

Anyone have ideas on how to center the button in the panel not matter
the size of the panel??

Thanks
 
A

Alberto Poblacion

sippyuconn said:
I have a usercontrol that has a panel as a band across the width of the
user
control

When the usercontrol is diaplayed the button is not centered.
If I anchor the button to the panel Left/Top/Right the button get's
streched
which I want to try to avoid.

Anyone have ideas on how to center the button in the panel not matter
the size of the panel??

You can compute the position of the button during the Load event of your
control:

MyButton.Left = (MyPanel.ClientSize.Width-MyButton.Width)/2;
 
B

Bruce Wood

I have a usercontrol that has a panel as a band across the width of the user
control

When the usercontrol is diaplayed the button is not centered.
If I anchor the button to the panel Left/Top/Right the button get's streched
which I want to try to avoid.

Anyone have ideas on how to center the button in the panel not matter
the size of the panel??

Thanks

Turn off the Left and Right anchoring. Leave just the Top anchoring
and nothing else (or even clear all of the Anchor properties if you
like).

The button should remain centred in the panel.
 
J

Jeffrey Tan[MSFT]

Hi,

Is your Panel docked or anchored in the UserControl? I assume not.

Then, I assume you want the Button in the Panel to be not resized during
the Form resizing. For this requirement, you may take the advices of both
Bruce and Alberto. That is: you may cancel the using of Anchor property(so
that the Button's size will not stretch with the parent control resizing)
and calculate the center position of the Button in Form.Load event. This
should do what you want.

If we have misunderstood you, please feel free to feedback, thanks.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
J

Jeffrey Tan[MSFT]

Hi,

Have you reviewed our replies to you? Do they make sense to you? If you
still need any help, please feel free to feedback,, thanks.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top