Convert field to property

This commit is contained in:
John Lewin 2017-10-20 06:11:24 -07:00
parent 9bbf09113d
commit 833e7aaceb
3 changed files with 4 additions and 4 deletions

View file

@ -54,8 +54,6 @@ namespace MatterHackers.MatterControl
protected double labelFontSize = 12 * GuiWidget.DeviceScale;
protected double errorFontSize = 10 * GuiWidget.DeviceScale;
public WizardWindow WizardWindow;
private GuiWidget mainContainer;
public WizardPage(string unlocalizedTextForCancelButton = "Cancel")
@ -128,6 +126,8 @@ namespace MatterHackers.MatterControl
this.AddChild(mainContainer);
}
public WizardWindow WizardWindow { get; set; }
public string WindowTitle { get; set; }
public bool AlwaysOnTopOfMain { get; set; } = true;