Reduce wizard definitions to new ISetupWizard interface

- Remove overlapping roles with DialogPage
- Use ISetupWizard to define forward through page definitions
- Remove PrinterSetupWizardRootPage, use first page in Pages
This commit is contained in:
John Lewin 2019-02-16 00:44:35 -08:00 committed by jlewin
parent 4e0078ebf0
commit 029f4fc0a7
16 changed files with 100 additions and 101 deletions

View file

@ -38,7 +38,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
{
private bool autoAdvance;
public HomePrinterPage(PrinterSetupWizard context, string headerText, string instructionsText, bool autoAdvance)
public HomePrinterPage(ISetupWizard context, string headerText, string instructionsText, bool autoAdvance)
: base(context, headerText, instructionsText)
{
this.autoAdvance = autoAdvance;