aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/DoubleValueChangedEventArgs.cs
blob: 2e1b894a914caa68f4c9a001d9aaf2c5200eba56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace Tango.Touch.Controls
{
    public class DoubleValueChangedEventArgs : RoutedEventArgs
    {
        public double Value { get; set; }

        public DoubleValueChangedEventArgs(RoutedEvent routedEvent, object source, double value) : base(routedEvent, source)
        {
            Value = value;
        }
    }
}