using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media; namespace Tango.Touch.Controls { public interface ITouchControl { bool EnableDropShadow { get; set; } double BlurRadius { get; set; } double ShadowDepth { get; set; } Color ShadowColor { get; set; } } }