I saw the suggestion on the other forum, but this one has formatting, so...
at a minimum you could set the sizebox style for a panel (though it gives a raised 3d border) which will allow the control to be sized by a user:
Code:public class SizeablePanel : ContainerControl { const int WS_SIZEBOX = 0x00040000; protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.Style |= WS_SIZEBOX; return cp; } } }




Reply With Quote
