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 { /// /// Represents the event arguments. /// /// public class BindingEventArgs : EventArgs { internal Action _renewAction; /// /// Gets or sets the element. /// public DependencyObject DependencyObject { get; set; } /// /// Gets or sets the binding property. /// public BindingProperty BindingProperty { get; set; } /// /// Gets or sets the value. /// public Object Value { get; set; } public void Renew() { _renewAction?.Invoke(); } } }