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 interface IVisualBinder { void DrawVisual(FrameworkElement element, Drawing2DHost host, DrawingContext context); List GetRenderProperties(); } }