The KryptonNavigator now has a property called NavigatorMode that determines the visual mode of operation. Our first mode implemented is called Panel.

NavigatorMode = Panel

As this is the first mode added it is the simplist possible mode I could create. You can probably guess from the name that it gives the visual appearance of a standard KryptonPanel. Here is a picture of the navigator without any KryptonPage instances.

Exciting eh!

In this mode the entire client area is filled with the selected page. So as soon as you add the first KryptonPage into the Pages collection you get the following.

In this mode you there is no visual interface for changing the selected page, you can only achieve that by using code to alter the SelectedPage or SelectedIndex properties.

But it might still be useful in some scenarios where you want to easily control the displayed page from code. At least you know that any new modes I add have to be more interesting than this!

Leave a Reply