Is it possible to set a style's TargetType property in XAML to a Generic Class?
public class Selector<T> : Control { }
and then in xaml
<Style x:TargetType="Selector">
<Setter Property="MyProperty" Value="Green" />
</Style>
This wont work because Selector is missing a type argument.