Here is the scenario:
![]()
Simply setting Button.AutoSize=true would cause the buttons
to have unequal size, ala:
![]()
Instead,
- place the controls within a TableLayoutPanel
- One row and three columns for this example
![]()
- Set each column to equal percentage column style
- Anchor all buttons Left, Right (stretch)
- Set TableLayoutPanel AutoSize to true
![]()
The buttons now will resize correctly.