Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
653 views
in Technique[技术] by (71.8m points)

wpf - What is the difference for TargetType="{x:Type Button}" and TargetType="Button"?

What is the difference for

TargetType="{x:Type Button}"

and

TargetType="Button"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...