What is the difference for TargetType=”{x:Type Button}” and TargetType=”Button”?
The XAML designer applies inbuilt type converters that convert the string value “Button” to System.Type which is Button , which makes it seem like there is no practical difference. However one should practise to use the explicit Type specification using x:Type. Explicit Type specification is required is when we inherit Styles using BasedOn, there implicit … Read more