Refactor ActionBar/ActionRow

- Convert SlicingOutputMessage event to EventHandler<StringEventArgs>
- Remove redundant PrintStatusRow base type, use FlowLayoutWidget
- Rename DesktopPrintStatusRow to PrintStatusRow
This commit is contained in:
John Lewin 2017-02-14 17:07:04 -08:00
parent e7a5659492
commit 778439bb48
5 changed files with 157 additions and 318 deletions

View file

@ -45,7 +45,7 @@ namespace MatterHackers.MatterControl.PrintQueue
public static RootedObjectEventHandler FileHasChanged = new RootedObjectEventHandler();
public event EventHandler SlicingDone;
public event EventHandler SlicingOutputMessage;
public event EventHandler<StringEventArgs> SlicingOutputMessage;
private static string fileNotFound = "File Not Found\n'{0}'".Localize();
private static string readyToPrint = "Ready to Print".Localize();