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

@ -89,7 +89,7 @@ namespace MatterHackers.MatterControl
Cursor = Cursors.Hand,
Name = plugin.ButtonText + " Button"
};
ContentRow.AddChild(pluginButton);
contentRow.AddChild(pluginButton);
if (isFirstItem)
{
@ -104,14 +104,14 @@ namespace MatterHackers.MatterControl
{
optionPanel.HAnchor = HAnchor.Stretch;
optionPanel.VAnchor = VAnchor.Fit;
ContentRow.AddChild(optionPanel);
contentRow.AddChild(optionPanel);
}
}
exportPluginButtons.Add(pluginButton, plugin);
}
ContentRow.AddChild(new VerticalSpacer());
contentRow.AddChild(new VerticalSpacer());
// TODO: make this work on the mac and then delete this if
if (AggContext.OperatingSystem == OSType.Windows
@ -122,7 +122,7 @@ namespace MatterHackers.MatterControl
HAnchor = HAnchor.Left,
Cursor = Cursors.Hand
};
ContentRow.AddChild(showInFolderAfterSave);
contentRow.AddChild(showInFolderAfterSave);
}
var exportButton = theme.CreateDialogButton("Export".Localize());