I am creating a C# winform (not asp.net) with two sections.
The left section is a sort of toolbar, where the user will enter a few images to be displayed.
The right section will display the information, the images.
Images can be any size, but the toolbar will almost always be the same size.
I wanted these two sections to be seperate, aka a divider between them, that I can drag about.
As well, any time an image is chosen, the right screen will resize, or at least resize and give me a scrollbar.
How can I accomplish this?
You can use a SplitContainer. You will need to set the FixedPanel property to the panel you want to remain the same size.