|
||
|
|
#1 (permalink) |
|
Forum Expert
|
I've seen this a few times before and am wondering on how I can do this...basically it's where you have a Main/Master/etc Form and you have mini forms inside of it, that can not leave the boundaries of the Main Form.
edit: maybe also known as...dock able forms? |
|
|
|
|
|
#2 (permalink) |
|
Forum Expert
Join Date: Mar 2003
Posts: 1,754
|
You'll want to look into MDI (multiple document interface) containers. MSDN has plenty of information on writing MDI applications and managing multiple child/parent forms.
__________________
"Misfortune shows those who are not really friends." -Aristotle "A multitude of words is no proof of a prudent mind." -Thales |
|
|
|
|
|
#3 (permalink) |
|
ConnectUO Creator
Join Date: Jan 2004
Location: In your mom
Age: 27
Posts: 4,762
|
its rather simple tbh, in the designer there is a property for the form that says something like
IsMdiContainer just change it to true. Then to add a form to it when you create the form you do something like Code:
Form f = new Form(); f.IsMdiChild = true; f.MdiParent = MyMdiForm; f.Show();
__________________
Jeff Boulanger ConnectUO - Core Developer Want to help make ConnectUO better? Click here to submit your ideas/requests Use your talent to compete against other community members in RunUO hosted coding competitions If you know XNA (even if its just a little) or are a good artist(2d or 3d) and are interested in making games for a hobby send me a pm or drop by #xna in irc.runuo.com. I'm looking to put together a small game development team. Please do not pm me for support. If you are having issues please post in the appropriate forum. Thanks for your continued support of both ConnectUO and RunUO |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|