views:

42

answers:

2

Hi,

I want to build a navigation screen, just like installation shields has (next/previous stuff), maybe a bit more sophisticated.. How is this usually done in WinForms?

thanks :)

+2  A: 

I think you're looking for a Wizard design.

I've successfully used this one:

Wizard Form Implementation

CodeProject has many more. Try searching there.

Jay Riggs
from a quick glance this doesn't support anything like jumping to a specific screen, etc. (programmly)
Itay
Look at the sample, specifically the WizardPage1 class. In it the next page is programmatically determined by the user's selection on the previous step.
Jay Riggs
+1  A: 

This is known as a wizard, and here is a detailed article.

David Gannon