views:

121

answers:

1

I have a panel containing a datagridview and 3 buttons at the bottom of a Form, i wanna to add the possibility to expand and collapse this panel, is there a way to do it in a Windows.Forms application ?

Someone have done something similar ?

+1  A: 

The SplitContainer control has the ability to collapse one of its two panels. You could rig up a button to the Panel1Collapsed property.

Bradley Smith