Style x:Key="{x:Type DataGrIDCell}" targettype="{x:Type DataGrIDCell}"
省略x:Key属性?
我认为WPF将密钥分配给相同的x:类型在引擎盖下.
解决方法Style.TargetType
的MSDN文档证实您的怀疑: Setting the targettype property to the TextBlock type without setting an x:Key implicitly sets the x:Key to {x:Type TextBlock}. This also means that if you give the above Style an x:Key value of anything other than {x:Type TextBlock},the Style would not be applIEd to all TextBlock elements automatically. Instead,you need to apply the style to the TextBlock elements explicitly.
如果一个样式的资源字典键是一个类型,该样式将被用作该类型的所有实例的默认样式,该类型不会明确指定样式.由于通常提供目标类型,省略密钥的语法只是定义默认样式的快捷方式.
总结以上是内存溢出为你收集整理的wpf – x:样式中的Key和TargetType全部内容,希望文章能够帮你解决wpf – x:样式中的Key和TargetType所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)