aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs
diff options
context:
space:
mode:
authorRoy <roy.mail.net@gmail.com>2018-02-09 13:41:58 +0200
committerRoy <roy.mail.net@gmail.com>2018-02-09 13:41:58 +0200
commitc8c9606e545f49aae3d9f0524775436adbdf27e9 (patch)
tree83d9fe870f652058af96f32b7159186f5b80f491 /Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs
parentbfcefc0cf95f3b8d5243908753129c79bad8dc8b (diff)
downloadTango-c8c9606e545f49aae3d9f0524775436adbdf27e9.tar.gz
Tango-c8c9606e545f49aae3d9f0524775436adbdf27e9.zip
Added my Controls Library !
Implemented Tech VU Item.
Diffstat (limited to 'Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs b/Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs
new file mode 100644
index 000000000..7c4ca571e
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Visuals
+{
+ /// <summary>
+ /// Represents a double value changed event argument.
+ /// </summary>
+ /// <seealso cref="System.EventArgs" />
+ public class DoubleValueChangedEventArgs : EventArgs
+ {
+ /// <summary>
+ /// Gets or sets the new value.
+ /// </summary>
+ public double Value { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="DoubleValueChangedEventArgs"/> class.
+ /// </summary>
+ public DoubleValueChangedEventArgs()
+ {
+
+ }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="DoubleValueChangedEventArgs"/> class.
+ /// </summary>
+ /// <param name="value">The value.</param>
+ public DoubleValueChangedEventArgs(double value)
+ : this()
+ {
+ Value = value;
+ }
+ }
+}