How to dynamically resize a textbox in C#

后端 未结 4 1239
情书的邮戳
情书的邮戳 2020-12-22 02:23

I am new to C# user interface. I have created a window as shown in the first image. But if the user drag the window and make it bigger, I would like for it to make each

4条回答
  •  轮回少年
    2020-12-22 03:11

    The same result can be achieved by using TableLayoutControl with one text box in each cell and then setting anchor property of each control (text boxes and TableLayout) to Left,Top, Right and bottom.

提交回复
热议问题