How can I create an application with resizeable frames
How can I create an app in one window with multiple frames.
For example if i want the lower portion of the screen to be taken up by a webbrowser object, and the top split into two halves with different it开发者_JS百科ems in.
For a single frame with several panes you can look at the Splitter control. When used the the dock property of Child controls you can control how they stack and move around. You may also look at MDI patterns, but MDI is not used as much with newer applications.
There is a SplitContainer control that would allow you to do what you want. You want a Horizontal one, with a web browser control in the bottom, and another SplitContainer in the top with the splitter set to Vertical, then you can put your other 2 controls in the left and right side of that.
You can use the SplitContainer. and then Use_the_SplitContainer
精彩评论