Resize Controls with Form Resize

前端 未结 5 1369
太阳男子
太阳男子 2020-12-01 19:29

I have read several stack overflow questions without finding a good working solution to my problem. How can I resize my controls whenever the form is resized? I would like

相关标签:
5条回答
  • 2020-12-01 20:07

    What you are trying to do in your code is to change the sizes of the controls which isn't so good approach. Generally, the size of the Buttons and TextBoxes shouldn't be changed when you re-size your form, but they often need to move (change location). Some controls do need to change size according to the re-sized form and but in most cases only one dimension. The central controls that are used for working area (if you are developing the tool for drawing for instance) should change sizes of both dimensions. All this you can accomplish by properly setting Dock and/or Anchor properties of the controls.

    textBox1.Dock = DockStyle.Bottom;
    textBox1.Anchor = AnchorStyles.Bottom & AnchorStyles.Left;
    

    All these are also easily set in the Properties panel when using designer.

    But if that isn't enough for you, in rare cases, you will most definitely want to only change the location of the control:

    textBox1.Location = new Point(newX, newY);
    
    0 讨论(0)
  • 2020-12-01 20:11

    The best option is to use a TableLayoutPanel. Put TableLayoutPanel on the form, set the Dock property to Fill, create required rows and columns and put the controls inside the cells. Of course you need to set Dock/Anchor on the controls inside the cells, so they respond to changes to the cell size. In some situations you may need to put a Panel into a cell and drop the controls inside it, because every cell can only contain a single control. You may also need to set RowSpan/ColumnSpan on the controls.

    By using a TableLayoutPanel, you have complete control over how your cotrols should be arranged. You can set absolute or percentage size for rows and columns.

    0 讨论(0)
  • 2020-12-01 20:14

    Use Anchor of the control. There's an option on anchoring the top, bottom, left and right. And you're good to go.

    0 讨论(0)
  • 2020-12-01 20:21

    I found an alternative solution that is working well for me, appreciate any negative or positive comments on the solution.

    Using several Split Containers and Split Containers inside of Split Containers in different regions I am able to section off the primary pieces of the layout, and within there utilizing Docking and Anchoring I am able to accomplish exactly what I wanted to do - it works beautifully.

    I would point out I am aware that some folks online mention split containers use lots of resources.

    0 讨论(0)
  • 2020-12-01 20:22

    If your controls are in a group box, be sure to set the group boxes properties to resize. Controls inside the box are controlled by the box. The box size (unless it is inside another box) is controlled by the form.

    0 讨论(0)
提交回复
热议问题