要自定义 WrapPanel 的样式,可以使用以下步骤:
<Style x:Key="CustomWrapPanelStyle" TargetType="WrapPanel">
<Setter Property="Background" Value="LightGray"/>
<Setter Property="Margin" Value="10"/>
</Style>
<WrapPanel Style="{StaticResource CustomWrapPanelStyle}">
<!-- WrapPanel 内容 -->
</WrapPanel>