aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SharedUI/Binding/BindingEventArgs.cs
blob: 06ea61019c8d596e20900543b6157bab81816e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;

namespace Tango.SharedUI
{
    /// <summary>
    /// Represents the <see cref="BindingEventContainer.ValueChanged"/> event arguments.
    /// </summary>
    /// <seealso cref="System.EventArgs" />
    public class BindingEventArgs : EventArgs
    {
        internal Action _renewAction;

        /// <summary>
        /// Gets or sets the element.
        /// </summary>
        public DependencyObject DependencyObject { get; set; }

        /// <summary>
        /// Gets or sets the binding property.
        /// </summary>
        public BindingProperty BindingProperty { get; set; }

        /// <summary>
        /// Gets or sets the value.
        /// </summary>
        public Object Value { get; set; }

        public void Renew()
        {
            _renewAction?.Invoke();
        }
    }
}