是否可以在样式中定义资源而不是使用模板?
<ListView.Resources >
<Style TargetType="{x:Type ScrollBar}">
<Setter Property="Background" Value="Transparent" />
</Style>
</ListView.Resources>
我如何将这件事包装成:
<Style TargetType="{x:Type ListView}">
</Style>
答案 0 :(得分:1)
我不确定我是否正确理解了你的问题...这就是你在寻找什么?
<Style TargetType="{x:Type ScrollBar}">
<Style.Resources>
<Style TargetType="{x:Type ListView}">
</Style>
</Style.Resources>
<Setter Property="Background" Value="Transparent" />
</Style>