diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-05-13 12:35:21 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-05-13 12:35:21 +0300 |
| commit | e1ca035d2f10626c5b9e48d25acf58f469ee796b (patch) | |
| tree | cc3ca0ca329c9944397c394bd65bf960bd315517 /Software/Visual_Studio/Tango.Core | |
| parent | 6284689900fb795dd4b03b4b1d921007f7eb9aa7 (diff) | |
| download | Tango-e1ca035d2f10626c5b9e48d25acf58f469ee796b.tar.gz Tango-e1ca035d2f10626c5b9e48d25acf58f469ee796b.zip | |
Motor Widget!
New Numeric up/down
New Range Slider.
Diffstat (limited to 'Software/Visual_Studio/Tango.Core')
| -rw-r--r-- | Software/Visual_Studio/Tango.Core/TangoProgress.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Core/TangoProgress.cs b/Software/Visual_Studio/Tango.Core/TangoProgress.cs index ccec0e546..e8a82a3b0 100644 --- a/Software/Visual_Studio/Tango.Core/TangoProgress.cs +++ b/Software/Visual_Studio/Tango.Core/TangoProgress.cs @@ -73,7 +73,10 @@ namespace Tango.Core /// </summary> public TangoProgress(String message, bool isIndeterminate = true, T value = default(T), T maximum = default(T)) : this() { - + Message = message; + IsIndeterminate = isIndeterminate; + Value = value; + Maximum = maximum; } public override string ToString() |
