public static void Add <T>(this ValuesInitializer @this, AttachedValue <T> value) => @this.Object[value.Property] = value.Value;
public static void Add <T>(this ValuesInitializer @this, AttachedProperty <T> property, T value) => @this.Object[property] = value;