这两种设置样式的TargetType的方式之间有区别吗?
<Style TargetType="Grid"></Style>
<Style TargetType="{x:Type Grid}"></Style>
最佳答案
没有区别。您只是在显式添加x:Type属性。默认情况下,WPF使用您在TargetType中添加的{x:Type}对其进行解析
编辑:
使用自定义控件时,您想直接设置{x:Type CustomControl}
关于c# - 在WPF中设置样式TargetType,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20692859/