Changed Changing some delegate defs to use EventHandler<> instead.
Took out some EventHandler new s that were from old code Now Provider code Create Folder in library and working some in provider. New tests in MatterSlice
This commit is contained in:
parent
edbcbd5cd1
commit
f6d32a62a5
17 changed files with 234 additions and 55 deletions
|
|
@ -82,9 +82,7 @@ namespace MatterHackers.MatterControl.ActionBar
|
|||
}
|
||||
}
|
||||
|
||||
public delegate void AddIconToPrintStatusRowDelegate(GuiWidget iconContainer);
|
||||
|
||||
public static event AddIconToPrintStatusRowDelegate AddIconToPrintStatusRow
|
||||
public static event Action<GuiWidget> AddIconToPrintStatusRow
|
||||
{
|
||||
add
|
||||
{
|
||||
|
|
@ -99,7 +97,7 @@ namespace MatterHackers.MatterControl.ActionBar
|
|||
}
|
||||
}
|
||||
|
||||
private static event AddIconToPrintStatusRowDelegate privateAddIconToPrintStatusRow;
|
||||
private static event Action<GuiWidget> privateAddIconToPrintStatusRow;
|
||||
|
||||
private event EventHandler unregisterEvents;
|
||||
private string ActivePrintStatusText
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue