aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Core
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-13 12:35:21 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-13 12:35:21 +0300
commite1ca035d2f10626c5b9e48d25acf58f469ee796b (patch)
treecc3ca0ca329c9944397c394bd65bf960bd315517 /Software/Visual_Studio/Tango.Core
parent6284689900fb795dd4b03b4b1d921007f7eb9aa7 (diff)
downloadTango-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.cs5
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()