>I am facing problem with WinForms resizing problem...
>
[quoted text clipped - 4 lines]
>the onResize even of winforms and then I can do some resizing for other
>controls
Without seeing the layout of your form, I can't guess what exactly you
want to resize in which way. If you can't do it with the usual mechanisms
of docking and anchoring (a hint: consider using additional invisible
grouping panels), you'll have to calculate the control positions and/or
sizes yourself when the form is resizing.
Oliver Sturm

Signature
Expert programming and consulting services available
See http://www.sturmnet.org (try /blog as well)
Pan Wen - 23 Sep 2005 23:54 GMT
yes, you should change control position,size and font size.
Pan wen
dotnetskin: Skinnable User Interface
http://www.dotnetskin.net
>>I am facing problem with WinForms resizing problem...
>>
[quoted text clipped - 12 lines]
>
> Oliver Sturm
Check out the Anchor and Dock properties of the control and form. Most
resizing tasks can be performed by setting those properties.
If you have very specialized re-sizing needs, then using the OnResize
event as others have suggested would be appropriate.