Re-wrote the load filament wizard as not a macro so we have more control over it

Added it to the setup steps

issue: MatterHackers/MCCentral#4429
Put in a loading filament as part of initial setup process
This commit is contained in:
Lars Brubaker 2018-11-02 16:14:37 -07:00
parent 6469cba676
commit 775f1982bd
68 changed files with 832 additions and 492 deletions

View file

@ -55,7 +55,7 @@ namespace MatterHackers.MatterControl
Margin = new BorderDouble(5),
HAnchor = HAnchor.Left
};
contentRow.AddChild(fileNameHeader);
ContentRow.AddChild(fileNameHeader);
//Adds text box and check box to the above container
itemNameWidget = new MHTextEditWidget("", theme, pixelWidth: 300, messageWhenEmptyAndNotSelected: "Enter a Design Name Here".Localize())
@ -67,7 +67,7 @@ namespace MatterHackers.MatterControl
{
acceptButton.InvokeClick();
};
contentRow.AddChild(itemNameWidget);
ContentRow.AddChild(itemNameWidget);
}
}
}