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.Graphics2D { public class BindingEventArgs : EventArgs { public DrawingVisual Visual { get; set; } public FrameworkElement Element { get; set; } public Object Value { get; set; } } }