using System.Windows; using System.Windows.Controls; namespace EC.WpfElement.Template { public class CustomControl : Control { static CustomControl() { DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl), new FrameworkPropertyMetadata(typeof(CustomControl))); } } }