如何将样式应用于Expander控件的内容部分?
答案 0 :(得分:2)
想出来:
<Style x:Key="ListItem" TargetType="{x:Type Expander}">
<Setter Property="BorderBrush" Value="{StaticResource DefaultBorder}"/>
<Setter Property="BorderThickness" Value="0,0,0,1"/>
<Setter Property="Padding" Value="0,2"/>
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<Border BorderBrush="{StaticResource DefaultBorder}" BorderThickness="0,1,0,0">
<Grid>
<Border Background="Transparent" Padding="0,10,0,10" >
<ContentControl Margin="24,0,0,0" Content="{TemplateBinding Content}"/>
</Border>
</Grid>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
我需要ContentControl
。 :)
答案 1 :(得分:0)
由于expandr的Content属性是Object类型,因此对ContentControl中的内容没有任何限制。您可以应用所需的任何样式,具体取决于您要显示的内容以及显示方式。