Working on printing text
This commit is contained in:
parent
acc72177d3
commit
624ac2db7b
9 changed files with 115 additions and 34 deletions
|
|
@ -102,16 +102,22 @@ namespace MatterHackers.MatterControl
|
|||
/// </summary>
|
||||
public Func<bool> IsPaused { get; set; }
|
||||
|
||||
public Action PauseAction { get; set; }
|
||||
public Action<Action> PauseAction { get; set; }
|
||||
|
||||
public Action ResumeAction { get; set; }
|
||||
public Action<Action> ResumeAction { get; set; }
|
||||
|
||||
public Action<Action> StopAction { get; set; }
|
||||
|
||||
public string StopText { get; set; }
|
||||
|
||||
public string StopToolTip { get; set; } = "Cancel".Localize();
|
||||
|
||||
public string ResumeText { get; set; }
|
||||
|
||||
public string ResumeToolTip { get; set; } = "Resume".Localize();
|
||||
|
||||
public string PauseText { get; set; }
|
||||
|
||||
public string PauseToolTip { get; set; } = "Pause".Localize();
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue