这两种设置样式的TargetType的方法之间有区别吗?
<Style TargetType="Grid"></Style>
<Style TargetType="{x:Type Grid}"></Style>
解决方法:
没有区别.您只是在显式添加x:Type属性.默认情况下,WPF使用您在TargetType中添加的{x:Type}对其进行解析
编辑:
使用自定义控件时,您需要快速设置{x:Type CustomControl}
2022-12-18 17:49:48
这两种设置样式的TargetType的方法之间有区别吗?
<Style TargetType="Grid"></Style>
<Style TargetType="{x:Type Grid}"></Style>
解决方法:
没有区别.您只是在显式添加x:Type属性.默认情况下,WPF使用您在TargetType中添加的{x:Type}对其进行解析
编辑:
使用自定义控件时,您需要快速设置{x:Type CustomControl}