by Chris Porter » Thu Sep 25, 2008 12:35 am
Assuming your child forms are in fact forms, you should be able to easily convert them to UserControls by modifying the form.cs/vb and form.designer.cs/vb file to inherit from UserControl instead of Form. From there you will add each UserControl to a KryptonPage in the main navigator. This could be done through the designer if you have a fixed number of form instances or in code if they are created through user actions.
If you don't need the tabs at the top, try setting the Navigator mode to either Panel or Group depending on if you need a border. A "best practice" that I use in this situation is to leave the Navigator in a tab mode of some sort in the designer and switch it to the other view at runtime. This allows me easier control and navigation through of the navigator and its pages at design time.
EDIT: The Form -> UserControl suggestion should still apply if you go with the Workspace instead of the Navigator.