protected void Register <TControl>(ApplyStyle styler) { Register(t => t == typeof(TControl) ? styler : null); }
protected void RegisterInterface <TInterface>(ApplyStyle styler) { Register(t => typeof(TInterface).IsAssignableFrom(t) ? styler : null); }