如何在setter中获取控件的背景。例如。如何在Setter中获取TextBox的背景?
<Setter TargetName="Border" Property="Background" Value="{TemplateBinding Background}"/>
此语句将给出错误“表达式类型是注释有效样式值”。有没有办法在setter中获取背景属性?
答案 0 :(得分:0)
尝试,
<Style TargetType={x:Type TextBox}>
<Setter Property="Background" Value="Azure" />
</Style>
这是你正在尝试的吗?
Sudarsan Srinivasan
与此回答的第一条评论相关的更新
如果你想做ElementBinding,
Sudarsan Srinivasan