Add WindowTitle to ISetupWizard

This commit is contained in:
John Lewin 2019-02-16 09:04:43 -08:00 committed by jlewin
parent c5038e6772
commit 29812fdf82
7 changed files with 20 additions and 16 deletions

View file

@ -36,8 +36,7 @@ namespace MatterHackers.MatterControl
protected IEnumerator<WizardPage> pages;
protected PrinterConfig printer;
protected string windowTitle;
public string WindowTitle { get; protected set; }
public PrinterConfig Printer => printer;
@ -48,7 +47,6 @@ namespace MatterHackers.MatterControl
public WizardPage CurrentPage => pages.Current;
public WizardPage GetNextPage()
{
// Shutdown active page
@ -59,5 +57,7 @@ namespace MatterHackers.MatterControl
return pages.Current;
}
public abstract void Dispose();
}
}