Revert accessibility of contentRow

- Add public PrinterSetupWizardPage proxy to private .contentRow
- Use PrinterSetupWizardPage.ContentRow in LoadFilamentWizard
This commit is contained in:
John Lewin 2018-11-03 10:12:27 -07:00
parent c79afc741a
commit b1053b8198
44 changed files with 136 additions and 135 deletions

View file

@ -57,7 +57,7 @@ namespace MatterHackers.MatterControl
VAnchor = VAnchor.Stretch,
};
scrollWindow.ScrollArea.HAnchor = HAnchor.Stretch;
ContentRow.AddChild(scrollWindow);
contentRow.AddChild(scrollWindow);
var container = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
@ -132,7 +132,7 @@ namespace MatterHackers.MatterControl
};
rememberChoice = new CheckBox("Don't remind me again".Localize(), theme.TextColor);
ContentRow.AddChild(rememberChoice);
contentRow.AddChild(rememberChoice);
syncButton.Visible = true;