tags:

views:

47

answers:

1

How to make a form shrink to a smallest possible size Windows.Forms?

There was a pack() method in Swing that woked well but if I make all the components and a form itself AutoSise = true I get a dot (one pixel dot) on the screen.

+1  A: 

If you mean you want to define a 'smallest possible size', use the Form.MinimumSize property.

Andy Whitfield