What is the difference for TargetType=“{x:Type But

2019-01-14 10:12发布

问题:

What is the difference for

TargetType="{x:Type Button}"

and

TargetType="Button"

回答1:

I guess there is no difference as the XAML designer applies inbuilt type converters that convert the string value "Button" to System.Type which is Button .

However one should practise to use the explicit Type specification using x:Type.

Another place where explicit Type specification is required is when we inherit Styles using BasedOn, there implicit string Type wont work.

e.g.

This would work

 BasedOn="{StaticResource {x:Type Button}}"

But not this...

 BasedOn="{StaticResource Button}"

as here it would try to search a resource with Key "Button". But in the x:Type specification, as we already specified explicit Button Type the search of the static resource would be happen for the Style which is targetted for a Button.