1

i have a tablelayoutpanel and also several control inside, see the pic

enter image description here

the dark grey square is a datagridview, i want the users can resize the tablelayoutpanel by themselves, any one know how to do that?

hkguile
  • 4,235
  • 17
  • 68
  • 139
  • 1
    Possible duplicate of [How to make TableLayoutPanel with resizable cells like using Splitter](http://stackoverflow.com/questions/31069443/how-to-make-tablelayoutpanel-with-resizable-cells-like-using-splitter) – NicoRiff Feb 17 '17 at 13:42

1 Answers1

0

Use the SplitContainer class:

http://msdn.microsoft.com/en-us/library/system.windows.forms.splitcontainer.aspx

https://www.dotnetperls.com/splitcontainer

SplitContainer presents a resizable view. It splits the layout of your Windows Forms window into two parts: a left and right half, or a top and bottom half. It gives the user more control over how the window is arranged.

Kamil Ibadov
  • 1,436
  • 2
  • 20
  • 44