diff options
| author | Roy <roy.mail.net@gmail.com> | 2018-02-09 13:41:58 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2018-02-09 13:41:58 +0200 |
| commit | c8c9606e545f49aae3d9f0524775436adbdf27e9 (patch) | |
| tree | 83d9fe870f652058af96f32b7159186f5b80f491 /Software/Visual_Studio/Tango.Visuals/DoubleValueChangedEventArgs.cs | |
| parent | bfcefc0cf95f3b8d5243908753129c79bad8dc8b (diff) | |
| download | Tango-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.cs | 38 |
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; + } + } +} |
