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